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;
}
