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