import { EventEmitter } from '@angular/core'; import { ColumnTable } from '../../../../interfaces/columns/column'; import { TypeTable } from '../../../../enums/typeTable.enum'; import { ClickOption, ExpandOption } from '../../../../interfaces/export'; import * as i0 from "@angular/core"; /** * table expand option */ export declare class ExpandComponent { /** * flag to indicate if the expand is open */ isOpen: boolean; /** * Check status option */ option: ExpandOption; /** * Data row */ data: any; /** * Emitter to execute option */ clickOptionEmitter: EventEmitter; /** * actual column */ column: ColumnTable; /** * Type Table */ typeTable: TypeTable; /** * Execute expand emitter */ executeOption(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }