UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

30 lines (29 loc) 1.48 kB
import type { JSX } from '../../stencil-public-runtime'; import type { AccessKeyPropType, AlternativeButtonLinkRolePropType, AriaDescriptionPropType, ButtonCallbacksPropType, ButtonLinkProps, ButtonTypePropType, FocusableElement, IconsPropType, InlinePropType, LabelWithExpertSlotPropType, NamePropType, ShortKeyPropType, StencilUnknown, SyncValueBySelectorPropType, TooltipAlignPropType, VariantClassNamePropType } from '../../schema'; export declare class KolButtonLink implements ButtonLinkProps, FocusableElement { protected readonly host?: HTMLKolButtonLinkElement; protected readonly ctaRef: import("../../utils/element-interaction").CtaRef<HTMLKolButtonWcElement>; getValue(): Promise<StencilUnknown>; focus(): Promise<void>; click(): Promise<void>; render(): JSX.Element; _accessKey?: AccessKeyPropType; _ariaControls?: string; _ariaDescription?: AriaDescriptionPropType; _ariaExpanded?: boolean; _ariaSelected?: boolean; _disabled?: boolean; _hideLabel?: boolean; _icons?: IconsPropType; _inline?: InlinePropType; _label: LabelWithExpertSlotPropType; _name?: NamePropType; _on?: ButtonCallbacksPropType<StencilUnknown>; _role?: AlternativeButtonLinkRolePropType; _shortKey?: ShortKeyPropType; _syncValueBySelector?: SyncValueBySelectorPropType; _tooltipAlign?: TooltipAlignPropType; _type?: ButtonTypePropType; _value?: StencilUnknown; _variant?: VariantClassNamePropType; }