export type responseBody = { success: boolean; statusCode: number; message: string; data: T; }; export declare const post: (url: string, data: any) => Promise; export declare const get: (url: string) => Promise; export declare const put: (url: string, data: any) => Promise; export declare const del: (url: string) => Promise;