interface UseAutoSubmitCountdownProps { label: string; onSubmit: () => void; resetKey: string | null; shouldRun: boolean; } export declare const useAutoSubmitCountdown: ({ label, onSubmit, resetKey, shouldRun, }: UseAutoSubmitCountdownProps) => { submitLabel: string; }; export {};