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