export declare type RequestType = 'get' | 'post' | 'patch' | 'delete' | 'put' | 'head' | 'options'; interface Session { get(url: string, data?: any): Promise; post(url: string, data?: any): Promise; patch(url: string, operation: any, path: any, value: any): Promise; delete(url: string): Promise; } export default Session;