import { LocaleType } from "../../interfaces/types";
export declare const getApiPath: (path: string, params?: {
[key: string]: string | number;
}, locale?: LocaleType) => string;
export declare const callApi: (url: string, method: RequestInit['method'], options?: RequestInit) => Promise<any>;