export declare function callApi({ method, path: reqPath, body, explicitApiKeyParam, }: { method: "get" | "post" | "delete" | "patch"; path: string; body?: any; explicitApiKeyParam?: string; }): Promise;