/**
 * usePreviousImmediate hook for React
 *
 * @param currentValue The value whose previous value is to be tracked
 * @returns The previous value
 * @see https://rooks.vercel.app/docs/usePreviousImmediate
 */
declare function usePreviousImmediate<T>(currentValue: T): T | null;
export { usePreviousImmediate };
//# sourceMappingURL=usePreviousImmediate.d.ts.map