import { StyledProp } from '@codeleap/styles'; import { CalendarInputComposition } from './styles'; import { CalendarProps } from '../Calendar'; import { TextInputProps } from '../TextInput'; import { DateField } from '@codeleap/form'; export type CalendarInputProps = Omit & { value?: CalendarProps['value']; onValueChange?: CalendarProps['onValueChange']; style?: StyledProp; disabled?: boolean; gap?: number; field?: DateField; format?: string; overlay?: boolean; calendarProps?: Partial; /** * Defines the position where the calendar will be anchored relative to the input. */ calendarPosition?: 'left' | 'right'; /** * If `true`, this calendar is part of a globally managed group. * When one calendar in this group opens, all others with `autoClosePeersCalendars: true` will close. */ autoClosePeersCalendars?: boolean; }; //# sourceMappingURL=types.d.ts.map