declare const API: { getRequest: (url: string, queryParams?: any, headers?: any, isFileDownload?: boolean | undefined) => Promise; postRequest: (url: string, body?: any, headers?: any) => Promise; putRequest: (url: string, body?: any, headers?: any) => Promise; deleteRequest: (url: string, body?: any, headers?: any) => Promise; }; export { API };