import { EventEmitter, OnChanges, OnInit, SimpleChanges } from "@angular/core"; export declare class NOptionComponent implements OnInit, OnChanges { value: any; heading: string; description: string; iconId: string; iconColor: string; divider: string | boolean; tid: string; change: EventEmitter; get isDivider(): boolean; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; }