import { OnInit, OnDestroy } from '@angular/core'; import { AccordionDirective } from './accordion.directive'; export declare class AccordionLinkDirective implements OnInit, OnDestroy { group: any; get selected(): boolean; set selected(value: boolean); protected _selected: boolean; protected nav: AccordionDirective; constructor(nav: AccordionDirective); ngOnInit(): any; ngOnDestroy(): any; toggle(): any; }