/// import { GroupProps } from "@react-three/fiber"; type Props = { keyCode: string; keyPress?: string[]; onPress?: (e: KeyboardEvent) => void; } & GroupProps; export declare function Key(props: Props): import("react").JSX.Element; export {};