interface Config { headers?: { [key: string]: string; }; [key: string]: any; } export declare const getMergedConfig: (tenantId: string, accessToken: string | null, config?: Config) => Config; export declare const apiMutate: (baseURL: string, url: string, config: Config, data: any, accessToken: string | null, tenantId: string) => Promise>; export {};