/// import { Height, Width } from "../../../utils"; export interface DropdownProps { id?: string; placeholder?: string; headerInfo?: string | JSX.Element | null; height?: Height; width?: Width; isNested?: boolean; widthOverride?: number; onSelectionClear?: (() => void) | null; disabled?: boolean; className?: string; closedClassName?: string; openedClassName?: string; panelClass?: string; style?: React.CSSProperties; onAdaptive?: () => boolean; children?: React.ReactNode; } export interface DropdownClientRect extends ClientRect { widthOverride?: number; }