export interface Props { /** Field name */ name: string; /** Field label */ label?: string; /** Description for LLM field extraction */ description?: string; /** Include time in the picker */ includeTime?: boolean; /** Placeholder text */ placeholder?: string; /** Current value (ISO format, bindable) */ value?: string; /** Disabled state */ disabled?: boolean; /** Required field */ required?: boolean; /** Called when value changes */ onchange?: (value: string) => void; } declare const DateTimeInput: import("svelte").Component; type DateTimeInput = ReturnType; export default DateTimeInput; //# sourceMappingURL=DateTimeInput.svelte.d.ts.map