declare enum KbdVariant { ARROW_RIGHT = "arrow-right", ARROW_LEFT = "arrow-left", ARROW_UP = "arrow-up", ARROW_DOWN = "arrow-down", COMMAND = "command", META = "meta", SHIFT = "shift", OPTION = "option", ENTER = "enter", ESCAPE = "escape", BACKSPACE = "backspace" } export interface KbdProps { keys?: (KbdVariant | string)[]; filled?: boolean; preventDefault?: boolean; class?: string; noMargin?: boolean; } export interface KbdEvents { (e: 'keyPressed'): void; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: {}; rootEl: HTMLElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent any; }, string, import('vue').PublicProps, Readonly & Readonly<{ onKeyPressed?: (() => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };