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; }; type NativeAttrs = Omit, keyof Props>; export type KeyboardProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Omit, "small" | "option" | "className" | "command" | "shift" | "ctrl">>; export default _default;