export declare const httpCall: <T = any>({ url, method, data, }: {
    url: string;
    method?: "GET" | "POST" | "PUT" | "PATCH";
    data?: any;
}) => Promise<T>;
