import { Timer } from './timer'; export declare type UseTimerProps = { callback?: () => void; delay?: number | null; isDisabled?: boolean; timer?: Timer | null; }; export declare function useTimer(props?: UseTimerProps): { readonly timer: Timer | null; };