import React from 'react'; interface Props { command?: boolean; shift?: boolean; option?: boolean; ctrl?: boolean; className?: string; } declare type NativeAttrs = Omit, keyof Props>; export declare type KeyboardProps = Props & NativeAttrs; declare const Keyboard: React.ForwardRefExoticComponent>; export default Keyboard;