import { EventEmitter } from '@angular/core';
import { StTwoListSelectionElement, StTwoListSelectExtraLabelAction } from '../st-two-list-selection.model';
export declare class ListItemComponent {
    item: StTwoListSelectionElement;
    qaTag: string;
    editable: boolean;
    mode: 'compact' | 'normal';
    selectItem: EventEmitter<StTwoListSelectionElement>;
    selectExtraLabel: EventEmitter<StTwoListSelectExtraLabelAction>;
    constructor();
    readonly itemName: string;
    readonly itemQaTag: string;
    readonly checkQaTag: string;
    readonly selected: boolean;
    readonly itemMode: string;
    getModeStyle(): string;
    emitOnSelect(event: Event): void;
}
