import { ComponentInterface } from '../../stencil-public-runtime'; import { JSX } from '../../components'; export declare class Q2DropdownItem implements ComponentInterface { disabled: boolean; removable: boolean; separator: boolean; label: string; value: string; hostElement: HTMLElement; loc(key: string, subs?: string[]): string; get removeAriaLabel(): string; get dropdownItemBtn(): HTMLQ2BtnElement; get removeBtn(): HTMLQ2BtnElement; onHostElementFocus(): void; focusItem(): void; focusRemoveBtn(): void; onItemClick: (event: MouseEvent) => void; onItemKeydown: (event: KeyboardEvent) => void; reemitKeydown(event: KeyboardEvent): void; onItemFocus: (event: FocusEvent) => void; onRemoveBtnClick: (event: MouseEvent) => void; onRemoveBtnKeydown: (event: KeyboardEvent) => void; onRemoveBtnFocus: (event: FocusEvent) => void; render(): JSX.IntrinsicElements; separatorDOM(): JSX.IntrinsicElements; itemDOM(): JSX.IntrinsicElements; }