import type { HTMLInputAttributes } from 'svelte/elements'; import type { ControlInteractionOptions } from './control-interaction.js'; export interface Props extends Omit { /** The selected time value in HH:mm format. */ value?: string; /** Label displayed above the time input. */ label: string; /** Additional CSS class names. */ class?: string; /** Registers this control for agent interaction; omit or pass false to exclude. */ interaction?: ControlInteractionOptions | false; } declare const TimePicker: import("svelte").Component; type TimePicker = ReturnType; export default TimePicker; //# sourceMappingURL=TimePicker.svelte.d.ts.map