import { GroupProps } from "@react-three/fiber"; import { Raycaster } from "three"; declare type SwitchProps = { value?: boolean; onChange?: (value: boolean) => void; raycaster?: Raycaster; } & GroupProps; export declare function Switch(props: SwitchProps): JSX.Element; export {};