U function in a Node module I'm trying to describe in .d.ts has two aliases, config() and load() (see the source). The function can be described like this in dotenv/index.d.ts:
export function config(options?: dotenvOptions): Object;
How do I also export it under the other alias, load()?