type FetchOptions = {
    baseUrl?: string;
    headers?: Record<string, string>;
    timeout?: number;
};
export declare const createFetchClient: (config: FetchOptions) => (url: string, options?: RequestInit) => Promise<any>;
export {};
