/// import { GroupProps } from "@react-three/fiber"; import { Idea } from "../../logic/basis/idea"; import { ColorRepresentation, Raycaster } from "three"; type ButtonProps = { children?: string; onClick?: () => void; font?: string; fontSize?: number; maxWidth?: number; width?: number; textColor?: string; color?: ColorRepresentation; outline?: boolean; outlineColor?: string; idea?: Idea; raycaster?: Raycaster; } & GroupProps; export declare function Button(props: ButtonProps): import("react").JSX.Element; export {};