export interface InvokeRemoteInput { path: string; method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'; headers?: Record; body?: unknown; } export declare const invokeRemote: (input: InvokeRemoteInput) => Promise; //# sourceMappingURL=invoke-remote.d.ts.map