import { ComponentInterface } from '../../stencil-public-runtime'; export declare class Q2Btn implements ComponentInterface { ariaExpanded: boolean; ariaHasPopup: boolean | string; ariaControls: string; ariaSelected: boolean; ariaLabel: string; tabIndex: number; disabled: boolean; type: string; icon: boolean; badge: boolean; active: boolean; fab: boolean; hostElement: HTMLElement; disable(ev: Event): void; delegateFocus(event: FocusEvent): void; onFocus: (event: FocusEvent) => void; render(): any; loc(key: string, subs?: string[]): string; get buttonAttributes(): { ariaExpanded: string; ariaHasPopup: string; ariaLabel: string; ariaSelected: string; disabled: boolean; type: string; tabindex: number; }; }