export declare const post: (url: string, body: Record) => Promise; export declare const get: (url: string, query?: Record) => Promise; export declare const del: (url: string, query?: Record) => Promise;