import type { DateRangeValue } from './types.js'; export interface Props { /** Field name */ name: string; /** Field label */ label?: string; /** Description for voice extraction */ description?: string; /** Start date placeholder */ startPlaceholder?: string; /** End date placeholder */ endPlaceholder?: string; /** Current start date (ISO format YYYY-MM-DD, bindable) */ startDate?: string; /** Current end date (ISO format YYYY-MM-DD, bindable) */ endDate?: string; /** Minimum selectable date */ minDate?: string; /** Maximum selectable date */ maxDate?: string; /** Disabled state */ disabled?: boolean; /** Required field */ required?: boolean; /** Error message to display */ error?: string; /** Called when value changes */ onchange?: (value: DateRangeValue) => void; } declare const DateRangeInput: import("svelte").Component; type DateRangeInput = ReturnType; export default DateRangeInput; //# sourceMappingURL=DateRangeInput.svelte.d.ts.map