export type TimeFormat = '24h' | '12h'; interface TimePickerProps { /** Selected time as `HH:mm` (24h). */ value?: string; open?: boolean; disabled?: boolean; label?: string; placeholder?: string; format?: TimeFormat; /** Minute step (1, 5, 10, 15…). */ minuteStep?: number; min?: string; max?: string; closeOnSelect?: boolean; class?: string; onchange?: (value: string) => void; } declare const TimePicker: import("svelte").Component; type TimePicker = ReturnType; export default TimePicker;