import { ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core'; export declare class NbOptionComponent { protected parent: any; protected elementRef: ElementRef; protected cd: ChangeDetectorRef; /** * Option value that will be fired on selection. * */ value: T; setDisabled: boolean; /** * Fires value on click. * */ selectionChange: EventEmitter>; selected: boolean; disabled: boolean; constructor(parent: any, elementRef: ElementRef, cd: ChangeDetectorRef); /** * Determines should we render checkbox. * */ readonly withCheckbox: boolean; readonly content: any; readonly multiple: any; readonly selectedClass: boolean; readonly disabledClass: boolean; onClick(): void; select(): void; deselect(): void; }