export interface DurationInputProps { /** Duration as `HH:MM:SS`. */ value: string; onChange: (value: string) => void; invalid?: boolean; className?: string; } /** * Segmented `HH:MM:SS` entry: each unit is its own field, typing fills the focused * segment and auto-advances, arrows move/increment. Segments clamp to their max * (MM/SS ≤ 59), so an invalid duration can't be produced. Value in/out is `HH:MM:SS`. */ export declare function DurationInput({ value, onChange, invalid, className }: DurationInputProps): import("react").JSX.Element; //# sourceMappingURL=duration-input.d.ts.map