declare namespace _default { export { globalOptions }; export { head }; export { get }; export { post }; export { put }; export { del }; export { del as delete }; } export default _default; declare namespace globalOptions { let credentials: string; let redirect: string; let errorHook: null; } declare function head(uri: any, query?: {}, options?: {}): Promise<{ status: number; body: any; }>; declare function get(uri: any, query?: {}, options?: {}): Promise<{ status: number; body: any; }>; declare function post(uri: any, body: any, query?: {}, options?: {}): Promise<{ status: number; body: any; }>; declare function put(uri: any, body: any, query?: {}, options?: {}): Promise<{ status: number; body: any; }>; declare function del(uri: any, body: any, query?: {}, options?: {}): Promise<{ status: number; body: any; }>;