import { DatePickerProps as AntDatePickerProps } from "antd"; import { PopupPosition } from ".."; import { RangePickerProps } from "antd/es/date-picker"; export type DatePickerProps = AntDatePickerProps & { position?: PopupPosition; status?: "" | "warning" | "danger" | undefined; popupClassName?: string | undefined; }; export type { RangePickerProps };