import { GroupProps } from "@react-three/fiber"; declare type Item = { text: string; value: string; }; declare type DropDownProps = { items: Item[]; value?: string; width?: number; onChange?: (item: Item) => void; } & GroupProps; export declare function DropDown(props: DropDownProps): JSX.Element; export {};