export interface SmartDateTimePickerProps { /** * The selected date/time value */ value?: Date; /** * Callback when the value changes */ onChange?: (date: Date | undefined) => void; /** * Placeholder text * @default 'Enter a date or time...' */ placeholder?: string; /** * Whether to include time selection * @default false */ includeTime?: boolean; /** * Minimum allowed date */ minDate?: Date; /** * Maximum allowed date */ maxDate?: Date; /** * Additional CSS class */ className?: string; /** * Whether the input is disabled */ disabled?: boolean; } export interface ParsedDateTime { date: Date; confidence: "high" | "medium" | "low"; originalInput: string; } //# sourceMappingURL=types.d.ts.map