import { default as React } from 'react'; export interface DateInputProps { /** Current value (ISO date string YYYY-MM-DD or Date object) */ value: string | Date; /** Callback when value changes */ onChange: (value: string) => void; /** Input type */ type?: 'date' | 'time' | 'datetime-local' | 'month' | 'week'; /** Minimum date/time */ min?: string; /** Maximum date/time */ max?: string; /** Disabled state */ disabled?: boolean; /** Show calendar icon */ showIcon?: boolean; /** Placeholder text */ placeholder?: string; /** Size variant */ size?: 'sm' | 'md' | 'lg'; /** Additional className */ className?: string; /** Additional input props */ inputProps?: React.InputHTMLAttributes; } /** * DateInput Component * * Date, time, or datetime input field with optional icon. * Supports various input types and formats with consistent styling. * * @example * ```tsx * * ``` * * @example * ```tsx * * ``` */ export declare const DateInput: React.FC; //# sourceMappingURL=date-input.d.ts.map