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