import { default as React } from 'react'; export interface TimerDisplayProps { /** Formatted time string (e.g., "12:34", "1:23:45") */ time: string; /** Whether the timer is active/running */ isActive?: boolean; /** Size variant */ size?: 'sm' | 'md' | 'lg'; /** Show clock icon */ showIcon?: boolean; /** Additional className */ className?: string; } /** * TimerDisplay Component * * Displays a formatted time with optional clock icon. * Uses monospace font for consistent digit width. * * @example * ```tsx * * ``` * * @example * ```tsx * * ``` */ export declare const TimerDisplay: React.FC; //# sourceMappingURL=timer-display.d.ts.map