import { EventEmitter } from '../../stencil-public-runtime'; import { ComboBoxValueType } from '../../types'; export declare class ComboBoxSelection { /** * Sets the input as editable or displays the closable box */ isEditing: boolean; /** * Passed to bring significance to the component - name and value */ selection: ComboBoxValueType; /** * @internal used to cut of email value before the @ and display that instead of name when it is not provided */ isEmail: boolean; /** * Emits request to remove selection */ luComboBoxDeleteSelectionRequest: EventEmitter; handleDeleteRequest: (_ev: any) => void; getSelectionText(): string; render(): any; }