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