UNPKG

@public-ui/components

Version:

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

27 lines (26 loc) 1.27 kB
import type { AccessKeyPropType, AlternativeButtonLinkRolePropType, AriaCurrentValuePropType, AriaDescriptionPropType, ButtonVariantPropType, CustomClassPropType, DownloadPropType, FocusableElement, HrefPropType, IconsPropType, LabelWithExpertSlotPropType, LinkButtonProps, LinkOnCallbacksPropType, LinkTargetPropType, ShortKeyPropType, TooltipAlignPropType } from '../../schema'; import type { JSX } from '../../stencil-public-runtime'; export declare class KolLinkButton implements LinkButtonProps, FocusableElement { private linkWcRef?; private readonly catchRef; focus(): Promise<void>; kolFocus(): Promise<void>; render(): JSX.Element; _accessKey?: AccessKeyPropType; _ariaCurrentValue?: AriaCurrentValuePropType; _ariaDescription?: AriaDescriptionPropType; _customClass?: CustomClassPropType; _disabled?: boolean; _download?: DownloadPropType; _hideLabel?: boolean; _href: HrefPropType; _icons?: IconsPropType; _label?: LabelWithExpertSlotPropType; _on?: LinkOnCallbacksPropType; _role?: AlternativeButtonLinkRolePropType; _shortKey?: ShortKeyPropType; _tabIndex?: number; _target?: LinkTargetPropType; _tooltipAlign?: TooltipAlignPropType; _variant?: ButtonVariantPropType; }