import { EventEmitter } from '@angular/core'; export declare class SmartRow { /** * If true, this row can be expanded to show more contents. */ expandable: boolean; /** * If true, all contents are shown; otherwise the row is collapsed. *
* This can be used to create an accordion effect. */ expanded: boolean; /** * Event fired when the row is expanded. */ onExpand: EventEmitter; /** * Event fired when the row is collapsed. */ onCollapse: EventEmitter; toggleExpanded(): void; }