/**
 * Initializes and retains a value across renders, calling the factory
 * function only once.
 */
export declare const useConst: <_Value>(factory: () => _Value) => _Value;
