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