import * as react from 'react'; import { HTMLAttributes, ReactNode } from 'react'; interface KeyboardProps extends HTMLAttributes { children?: ReactNode; } declare const Keyboard: react.ForwardRefExoticComponent>; export { Keyboard, type KeyboardProps };