type BaseApiClass = { new (...args: any[]): any; }; type ApiModule = { Configuration: { new (...args: any[]): any; }; }; declare const apiGenerator: (module: ApiModule, api: BaseApiClass, basePath: string, jwt: string | null) => T; export default apiGenerator;