import { ReactNode } from 'react'; export declare const PASSWORD_RESET_REQUEST_COOLDOWN_MS = 60000; export declare function formatPasswordResetCooldownLabel(label: ReactNode, remainingSeconds: number): ReactNode; export declare function getPasswordResetCooldownMessage(remainingSeconds: number): string; export declare function usePasswordResetRequestCooldown(storageKey?: string, cooldownMs?: number): { isActive: boolean; remainingSeconds: number; startCooldown: () => void; };