import { LitElement } from 'lit'; /** * Keyboard key display component (styled keycap) * * @slot - Alternative content to the combo prop * * @csspart container - The wrapper span * @csspart key - Individual key elements * @csspart separator - The separator between keys */ export declare class UIKbd extends LitElement { static styles: import("lit").CSSResult; /** Key combination string, e.g. "Ctrl+Shift+S" */ combo: string; size: 'sm' | 'md' | 'lg'; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'ui-kbd': UIKbd; } } //# sourceMappingURL=kbd.d.ts.map