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