import { BasicResponse } from "../types"; export interface Config { body?: string; headers: { "X-API-KEY": string; "X-Amberflo-Caller-Stats"?: string; }; method: string; } export declare const useApiCall: () => { getApiCall: (url: string, method?: string, body?: Record, componentType?: string, base?: "default" | "customers") => Promise; };