import { useEffect } from 'react'; export declare const range: (n: number) => number[]; export declare const hashString: (str: string) => number; export declare const LaTeX: { _preamble: string; _host: string; getHost: () => string; setHost: (h: string) => void; getPreamble: () => string; setPreamble: (p: string) => void; fetchSVG: (tex: string) => Promise; }; export declare const fetchLaTeXSvg: any; export declare function usePrevious(value: T): T | undefined; export declare function useLocalStorage(key: string, initialValue: T): readonly [T, (value: T | ((t: T) => T)) => void]; export declare const isBrowser: boolean; export declare const useIsomorphicLayoutEffect: typeof useEffect;