type ApiResponse = { headers: Headers; response: T; status: number; error: string | null; }; export declare const apiCall: (endpoint: string, token: string, cookie?: string | null | undefined, method?: string, body?: string) => Promise>; export {};