import * as _angular_core from '@angular/core'; /** * @license * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/thekhegay/ngwr/blob/main/LICENSE */ /** Visual size variant. */ type WrKbdSize = 'sm' | 'md' | 'lg'; /** * Tiny keycap chip — renders projected content (`⌘`, `K`, `Enter`, etc.) in * a beveled rectangle that reads as a physical key. Stack multiple `` * with a plain `+` between them for chords. * * @example * ```html * + K * Esc * ``` * * @see https://ngwr.dev/components/keyboard */ declare class WrKbd { /** Visual size variant. @default 'md' */ readonly size: _angular_core.InputSignal; protected readonly classes: _angular_core.Signal; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } export { WrKbd }; export type { WrKbdSize };