export declare const generateRequestId: () => string;
export interface RequestConfig {
    url?: string;
    method?: string;
    headers?: Record<string, string | undefined>;
    params?: Record<string, any>;
    data?: any;
    timeout?: number;
    responseType?: 'json' | 'stream' | 'blob' | 'text' | 'arraybuffer';
}
export interface CustomRequestOptions {
    headers?: Record<string, string | undefined>;
    timeout?: number;
    responseType?: 'json' | 'stream' | 'blob' | 'text' | 'arraybuffer';
}
//# sourceMappingURL=request.d.ts.map