import type { ApiProxyRequestBody } from '../types'; export declare const useApiProxy: (credentialsId: string) => { authState: import("../../oauth").AuthState; apiRequest: (body: ApiProxyRequestBody) => Promise<{ ok: true; status: number; status_text: string; headers: Record; data: unknown; }>; };