/** * Stores and returns the previous value of a state or prop. * * @template T - Type of the stored value * @param value - The current value * @returns The previous value or `undefined` on the first render * * @example * const prevCount = usePrevious(count); */ export declare const usePrevious: (value: T) => T | undefined; //# sourceMappingURL=usePrevious.d.ts.map