import { Method } from 'axios'; export declare type Request = { method: Method; url: string; data?: any; files?: [{ name: string; file: File; }]; fields?: [{ name: string; value: any; }]; timeout?: number; headers?: Record; }; declare const apiUtils: { initJwt(jwt: string): void; request: ({ method, url, data, timeout, headers }: Request, withoutJwt?: boolean) => Promise; requestHead(url: string): any; }; export declare const wait: (miliSec: number) => Promise; export default apiUtils;