export declare function fetchWithTimeout(url: string, options: RequestInit, timeout?: number): Promise<Response>;
export declare function fetchWithRetry(url: string, options: RequestInit, retries?: number, delay?: number): Promise<Response>;
export declare function createHeaders(token: string): Record<string, string>;
