export declare function api({ path, baseApiUrl, method, headers, params, body }: { path: string; baseApiUrl?: string; method: RequestInit['method']; headers?: RequestInit['headers']; body?: RequestInit['body']; params?: Record; }): Promise>;