export interface ServerAPIRequest { abortController: AbortController; endpoint: string; method?: 'GET' | 'DELETE' | 'POST' | 'PUT'; headers?: Record; followRedirect?: boolean; credentials?: boolean; payload?: any; } export interface ErrorResponse { error: string; message: string; status: number; path?: string; timestamp?: string; trace?: string; } export declare function sendRequest(req: ServerAPIRequest, retry?: boolean): Promise; //# sourceMappingURL=server-request.d.ts.map