import type { SIZES, FieldProps } from "@appsmith/wds"; import type { ComboBoxProps as SpectrumComboBoxProps } from "react-aria-components"; export interface ComboBoxProps extends Omit, "slot">, FieldProps { /** size of the select * * @default medium */ size?: Exclude; /** The content to display as the placeholder. */ placeholder?: string; }