interface RequestOptions { params?: any; data?: any; headers?: any; } export declare const get: (url: string, options?: RequestOptions | undefined) => Promise; export declare const post: (url: string, options?: RequestOptions | undefined) => Promise; export {};