import type { DateValue, DatePickerProps as SpectrumDatePickerProps } from "react-aria-components"; import type { SIZES, FieldProps } from "@appsmith/wds"; export interface DatePickerProps extends Omit, "slot" | "placeholder">, FieldProps { /** size of the select * * @default medium */ size?: Exclude; /** * className for the popover */ popoverClassName?: string; } export type { DateValue };