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