declare const DEFAULTS: {}; declare const QUERY: {}; declare const PARAMS: {}; declare const ON_OFFLINE: () => void; declare const ON_ONLINE: () => void; declare const ONLINE = true; declare const ATTEMPTS = 0; declare const ATTEMPT_INTERVAL = 2; declare const REVALIDATE_ON_FOCUS = false; declare const RETRY_ON_RECONNECT = true; declare const REVALIDATE_ON_MOUNT = true; declare const DEFAULT_GRAPHQL_PATH = "/graphql"; declare const DEFAULT_RESOLVER: (e: any) => any; declare const DEFAULT_MIDDLEWARE: (incoming: any, previous: any) => any; declare const DEFAULT_TRANSFORM: (fetchData: any) => any; declare const METHODS: { GET: string; DELETE: string; HEAD: string; OPTIONS: string; POST: string; PUT: string; PATCH: string; PURGE: string; LINK: string; UNLINK: string; }; declare const UNITS_MILISECONDS_EQUIVALENTS: { ms: number; sec: number; min: number; h: number; d: number; we: number; mo: number; y: number; }; export { DEFAULTS, QUERY, PARAMS, ON_OFFLINE, ON_ONLINE, ONLINE, ATTEMPTS, ATTEMPT_INTERVAL, REVALIDATE_ON_FOCUS, RETRY_ON_RECONNECT, REVALIDATE_ON_MOUNT, DEFAULT_GRAPHQL_PATH, DEFAULT_RESOLVER, METHODS, UNITS_MILISECONDS_EQUIVALENTS, DEFAULT_MIDDLEWARE, DEFAULT_TRANSFORM };