import type { DayPickerProps, SharedProps, TimePickerProps } from 'payload'; export type Props = { id?: string; onChange?: (val: Date) => void; placeholder?: string; readOnly?: boolean; value?: Date | string; } & DayPickerProps & SharedProps & TimePickerProps; //# sourceMappingURL=types.d.ts.map