import { EventEmitter } from '../../stencil-public-runtime'; export declare class GroupItem { hostElement: HTMLIxGroupItemElement; /** * Group item icon */ icon?: string; /** * ARIA label for the icon */ ariaLabelIcon?: string; /** * Group item text */ text?: string; /** * Group item secondary text */ secondaryText?: string; /** * Supress the selection of the group */ suppressSelection: boolean; /** * @internal * Item represents the footer of the group */ groupFooter: boolean; /** * Show selected state */ selected: boolean; /** * Disable the group item. * The elements tabindex attribute will get set accordingly. * * If false tabindex will be 0, -1 otherwise. */ disabled: boolean; /** * Selection changed */ selectedChanged: EventEmitter; /** * Index */ index?: number; clickListen(): void; render(): any; }