import { KbdStyles } from './kbd.css'; import * as React from 'react'; type KbdKey = 'command' | 'shift' | 'ctrl' | 'option' | 'enter' | 'delete' | 'escape' | 'tab' | 'capslock' | 'up' | 'right' | 'down' | 'left' | 'pageup' | 'pagedown' | 'home' | 'end' | 'help' | 'space'; interface KbdProps extends Omit>, 'size'>, KbdStyles { keys?: KbdKey | KbdKey[]; } declare const Kbd: React.ForwardRefExoticComponent>; export { Kbd, type KbdProps }; //# sourceMappingURL=kbd.d.ts.map