///
///
import { Vector2 } from "@react-three/fiber";
import { OptionResult } from 'yarn-bound';
import { Group } from 'three';
type OptionsPickerProps = {
fontSize?: number;
lineHeight?: number;
speed?: number;
options: OptionResult[];
onSelection: (selectionIndex: number) => void;
position?: Vector2;
fontColor?: string;
selectedIndex: number | null;
setSelectedIndex: (index: number | null) => void;
};
declare const OptionsPicker: import("react").ForwardRefExoticComponent>;
export default OptionsPicker;