import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface DatePickerInputProps extends Omit, 'onChange' | 'onFocus' | 'onBlur' | 'value' | 'placeholder' | 'disabled'> { /** * Input type ('single' for single date, 'start' or 'end' for range) * @default 'single' */ type?: 'single' | 'start' | 'end'; /** * Custom input content (when using asChild) */ children?: React.ReactNode; } /** * DatePickerInput Component * * A composable component for the input field of a DatePicker. * Typically used within DatePickerTrigger. * * @public * * @example * ```tsx * * * * * // Range mode * * * * * * ``` * * @remarks * - Wraps the HTML `` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically handles value formatting, parsing, and validation. */ export declare const DatePickerInput: React.ForwardRefExoticComponent>; //# sourceMappingURL=DatePickerInput.d.ts.map