/// import { GroupProps } from "@react-three/fiber"; import { Raycaster } from "three"; type TextProps = { value?: string; onChange?: (s: string) => void; onSubmit?: (s: string) => void; onFocus?: () => void; onBlur?: () => void; type?: "text" | "password" | "number"; font?: string; fontSize?: number; width?: number; placeholder?: string; raycaster?: Raycaster; } & Omit; export declare function TextInput(props: TextProps): import("react").JSX.Element; export {};