UNPKG

@public-ui/components

Version:

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

29 lines (28 loc) 1.33 kB
import type { JSX } from '../../stencil-public-runtime'; import type { AccessKeyPropType, AlternativeButtonLinkRolePropType, AriaDescriptionPropType, ButtonCallbacksPropType, ButtonLinkProps, ButtonTypePropType, FocusableElement, IconsPropType, IdPropType, InlinePropType, LabelWithExpertSlotPropType, NamePropType, ShortKeyPropType, StencilUnknown, SyncValueBySelectorPropType, TooltipAlignPropType } from '../../schema'; export declare class KolButtonLink implements ButtonLinkProps, FocusableElement { private buttonWcRef?; private readonly catchRef; getValue(): Promise<StencilUnknown>; focus(): Promise<void | undefined>; render(): JSX.Element; _accessKey?: AccessKeyPropType; _ariaControls?: string; _ariaDescription?: AriaDescriptionPropType; _ariaExpanded?: boolean; _ariaSelected?: boolean; _disabled?: boolean; _hideLabel?: boolean; _icons?: IconsPropType; _id?: IdPropType; _inline?: InlinePropType; _label: LabelWithExpertSlotPropType; _name?: NamePropType; _on?: ButtonCallbacksPropType<StencilUnknown>; _role?: AlternativeButtonLinkRolePropType; _shortKey?: ShortKeyPropType; _syncValueBySelector?: SyncValueBySelectorPropType; _tooltipAlign?: TooltipAlignPropType; _type?: ButtonTypePropType; _value?: StencilUnknown; }