import type { TimerState, TimerAnimationState } from "./types"; interface TimerDefaultVariantProps { timerState: TimerState; animationState: TimerAnimationState; hasError: boolean; className?: string; } export declare const TimerDefaultVariant: ({ timerState, animationState, hasError, className, }: TimerDefaultVariantProps) => import("react/jsx-runtime").JSX.Element; export {};