export interface HttpOptions extends RequestInit { url?: string; method: string; body?: any; headers?: any; } export declare function getDefaultHttpOptions(): HttpOptions;