UNPKG

@public-ui/components

Version:

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

27 lines (26 loc) 1.38 kB
import type { JSX } from '../../stencil-public-runtime'; import type { AccessKeyPropType, AlternativeButtonLinkRolePropType, AriaCurrentValuePropType, AriaDescriptionPropType, ButtonVariantPropType, CustomClassPropType, DownloadPropType, FocusableElement, HrefPropType, IconsPropType, LabelWithExpertSlotPropType, LinkButtonProps, LinkOnCallbacksPropType, LinkTargetPropType, ShortKeyPropType, TooltipAlignPropType } from '../../schema'; export declare class KolLinkButton implements LinkButtonProps, FocusableElement { protected readonly host?: HTMLKolLinkButtonElement; protected readonly ctaRef: import("../../utils/element-interaction").CtaRef<HTMLKolLinkWcElement>; focus(): Promise<void>; click(): Promise<void>; render(): JSX.Element; _accessKey?: AccessKeyPropType; _ariaCurrentValue?: AriaCurrentValuePropType; _ariaControls?: string; _ariaDescription?: AriaDescriptionPropType; _customClass?: CustomClassPropType; _disabled?: boolean; _download?: DownloadPropType; _hideLabel?: boolean; _href: HrefPropType; _icons?: IconsPropType; _label?: LabelWithExpertSlotPropType; _on?: LinkOnCallbacksPropType; _role?: AlternativeButtonLinkRolePropType; _shortKey?: ShortKeyPropType; _target?: LinkTargetPropType; _tooltipAlign?: TooltipAlignPropType; _variant?: ButtonVariantPropType; }