import { DocUploadData } from '../types/types'; export declare const fetchWithTimeout: (url: string, requestInit?: RequestInit, checkSuccessive?: boolean) => Promise; export declare const PostJson: (url: string, body: Object, headers?: {}) => Promise; export declare const DeleteJson: (url: string, headers?: { Accept: string; "Content-Type": string; }) => Promise; export declare const GetJson: (url: string, headers?: { Accept: string; "Content-Type": string; }) => Promise; export declare const GetResponse: (url: string, headers?: { Accept: string; "Content-Type": string; }) => Promise; export declare const createFormData: (files: File[]) => FormData; export declare const createDocUploadData: (files: File[]) => DocUploadData[]; export declare const PostFiles: (url: string, files: File[], headers?: { "Content-Type": string; }) => Promise;