/// import { GroupProps } from "@react-three/fiber"; type OptionProps = { onClick: () => void; width: number; children: string; index: number; } & GroupProps; export declare function Option(props: OptionProps): import("react").JSX.Element; export {};