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