export declare function get(url: string, headers?: Record): Promise>; export declare function post(url: string, payload?: unknown, headers?: Record): Promise>; export declare function put(url: string, payload?: unknown, headers?: Record): Promise>; export declare function patch(url: string, payload?: unknown, headers?: Record): Promise>; export declare function del(url: string, headers?: Record): Promise>;