import { CustomElement } from '../../Abstracts/CustomElement'; import { IKbdElementProps } from './IKbdElementProps'; declare const KbdElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Valueable").IValueableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Variantable").IVariantableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Kbd - Represents user input from a keyboard, typically used for keyboard shortcuts or key sequences. * * @description * The Kbd component is used to display text styled in a way that indicates user input from a keyboard. * It is often used to represent keyboard shortcuts, key sequences, or any other form of user input * that is relevant to the interface. * * @element mosaik-kbd * @category Text * * @csspart delimiter - The delimiter part. * @csspart kbd - The kbd part. * * @cssprop {String} --kbd-background-color - The background color CSS custom property. * @cssprop {String} --kbd-border-color - The border color CSS custom property. * @cssprop {String} --kbd-border-radius - The border radius CSS custom property. * @cssprop {String} --kbd-border-style - The border style CSS custom property. * @cssprop {String} --kbd-border-width - The border width CSS custom property. * @cssprop {String} --kbd-font-family - The font family CSS custom property. * @cssprop {String} --kbd-font-letter-spacing - The font letter spacing CSS custom property. * @cssprop {String} --kbd-font-line-height - The font line height CSS custom property. * @cssprop {String} --kbd-font-size - The font size CSS custom property. * @cssprop {String} --kbd-font-text-decoration - The font text decoration CSS custom property. * @cssprop {String} --kbd-font-text-transform - The font text transform CSS custom property. * @cssprop {String} --kbd-font-weight - The font weight CSS custom property. * @cssprop {String} --kbd-foreground-color - The foreground color CSS custom property. * @cssprop {String} --kbd-gap - The gap CSS custom property. * @cssprop {String} --kbd-padding-bottom - The padding bottom CSS custom property. * @cssprop {String} --kbd-padding-left - The padding left CSS custom property. * @cssprop {String} --kbd-padding-right - The padding right CSS custom property. * @cssprop {String} --kbd-padding-top - The padding top CSS custom property. * @cssprop {String} --kbd-shadow - The shadow CSS custom property. * @cssprop {String} --kbd-shadow-blur - The shadow blur CSS custom property. * @cssprop {String} --kbd-shadow-color - The shadow color CSS custom property. * @cssprop {String} --kbd-shadow-offset-x - The shadow offset x CSS custom property. * @cssprop {String} --kbd-shadow-offset-y - The shadow offset y CSS custom property. * @cssprop {String} --kbd-shadow-spread - The shadow spread CSS custom property. * @cssprop {String} --kbd-transition-duration - The transition duration CSS custom property. * @cssprop {String} --kbd-transition-mode - The transition mode CSS custom property. * @cssprop {String} --kbd-transition-property - The transition property CSS custom property. * @cssprop {String} --kbd-translate - The translate CSS custom property. * * @example * Keyboard shortcut using slotted text: * ```html * Ctrl + C * ``` * * @example * Keyboard shortcut via value attribute: * ```html * * ``` * * @example * Styled keyboard key with variant: * ```html * Enter * ``` * * @public */ export declare class KbdElement extends KbdElement_base implements IKbdElementProps { private readonly _modifierSymbols; private readonly _modifierKeys; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `value` property. * * @public * @override * @attr */ get value(): Array; set value(value: Array); } /** * @public */ export declare namespace KbdElement { type Props = IKbdElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-kbd': KbdElement; } } export {}; //# sourceMappingURL=KbdElement.d.ts.map