/** * Hook like useMemo, but without unloading. */ export declare function useConstant(fn: () => T, deps?: any[]): T;