import { AuthKeys, FetchDataResponse } from './types'; type MethodType = 'GET' | 'POST' | 'DELETE'; type HeadersType = Record; export declare const fetchData: (baseUrl: string, method: MethodType, body?: any, authKeys?: AuthKeys, headersCustom?: HeadersType) => Promise; export {};