interface WrappedData { data?: any; [key: string]: any; } type HttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE'; export declare const makeApiCall: (method: HttpMethod, url: string, accessToken: string, wrappedData?: T, tenantId?: string, useWrappedDataOnly?: boolean) => Promise; export {};