/**
 * @license EUPL-1.2
 * Copyright (c) 2020-2024 Frameless B.V.
 * Copyright (c) 2021-2024 Gemeente Utrecht
 */
export declare class LinkButton {
    disabled: boolean;
    type: string;
    inline: boolean;
    pressed: boolean;
    form: string;
    formAction: string;
    formEnctype: string;
    formMethod: string;
    formNoValidate: boolean;
    formTarget: string;
    popoverTarget: string;
    popoverTargetAction: string;
    name: string;
    value: string;
    hostElement: HTMLElement;
    render(): any;
}
