import react, { FC, PropsWithChildren } from 'react'; import { SWRConfiguration, Cache, ProviderConfiguration, ScopedMutator, FullConfiguration, GlobalState, State, Arguments, MutatorCallback, MutatorOptions, Key, Fetcher, SWRHook, Middleware, BareFetcher, FetcherResponse } from './types.js'; export * from './types.js'; import * as events_d_ts from './events.js'; export { events_d_ts as revalidateEvents }; export { INFINITE_PREFIX } from './constants.js'; import { dequal } from 'dequal/lite'; declare const SWRConfig: FC SWRConfiguration); }>>; declare const initCache: (provider: Cache, options?: Partial) => [Cache, ScopedMutator, () => void, () => void] | [Cache, ScopedMutator] | undefined; declare const compare: typeof dequal; declare const cache: Cache; declare const mutate: ScopedMutator; declare const defaultConfig: FullConfiguration; declare const IS_REACT_LEGACY = false; declare const IS_SERVER: boolean; declare const rAF: (f: (...args: any[]) => void) => number | ReturnType; declare const useIsomorphicLayoutEffect: typeof react.useEffect; declare const slowConnection: boolean | undefined; declare const SWRGlobalState: WeakMap, GlobalState>; declare const stableHash: (arg: any) => string; declare const isWindowDefined: boolean; declare const isDocumentDefined: boolean; declare const isLegacyDeno: boolean; declare const hasRequestAnimationFrame: () => boolean; declare const createCacheHelper: >(cache: Cache, key: string | undefined) => readonly [() => T, (info: T) => void, (key: string, callback: (current: any, prev: any) => void) => () => void, () => any]; declare const noop: () => void; declare const UNDEFINED: undefined; declare const OBJECT: ObjectConstructor; declare const isUndefined: (v: any) => v is undefined; declare const isFunction: any = (...args: any[]) => any>(v: unknown) => v is T; declare const mergeObjects: (a: any, b?: any) => any; declare const isPromiseLike: (x: unknown) => x is PromiseLike; declare const mergeConfigs: (a: Partial, b?: Partial) => Partial; type KeyFilter = (key?: Arguments) => boolean; declare function internalMutate(cache: Cache, _key: KeyFilter, _data?: Data | Promise | MutatorCallback, _opts?: boolean | MutatorOptions): Promise>; declare function internalMutate(cache: Cache, _key: Arguments, _data?: Data | Promise | MutatorCallback, _opts?: boolean | MutatorOptions): Promise; declare const normalize: (args: [KeyType] | [KeyType, Fetcher | null] | [KeyType, SWRConfiguration | undefined] | [KeyType, Fetcher | null, SWRConfiguration | undefined]) => [KeyType, Fetcher | null, Partial>]; declare const withArgs: (hook: any) => SWRType; declare const serialize: (key: Key) => [string, Arguments]; type Callback = (...args: any[]) => any; declare const subscribeCallback: (key: string, callbacks: Record, callback: Callback) => () => void; declare const getTimestamp: () => number; declare const useSWRConfig: () => FullConfiguration; declare const preset: { readonly isOnline: () => boolean; readonly isVisible: () => boolean; }; declare const defaultConfigOptions: ProviderConfiguration; declare const withMiddleware: (useSWR: SWRHook, middleware: Middleware) => SWRHook; type PreloadFetcher = SWRKey extends () => infer Arg ? (arg: Arg) => FetcherResponse : SWRKey extends infer Arg ? (arg: Arg) => FetcherResponse : never; declare const preload: >(key_: SWRKey, fetcher: Fetcher) => ReturnType; export { IS_REACT_LEGACY, IS_SERVER, OBJECT, SWRConfig, SWRGlobalState, UNDEFINED, cache, compare, createCacheHelper, defaultConfig, defaultConfigOptions, getTimestamp, hasRequestAnimationFrame, initCache, internalMutate, isDocumentDefined, isFunction, isLegacyDeno, isPromiseLike, isUndefined, isWindowDefined, mergeConfigs, mergeObjects, mutate, noop, normalize, preload, preset, rAF, serialize, slowConnection, stableHash, subscribeCallback, useIsomorphicLayoutEffect, useSWRConfig, withArgs, withMiddleware };