import { EventEmitter, OnInit } from '@angular/core';
import { ClrTreetableActionOverflow } from './treetable-action-overflow';
import * as i0 from "@angular/core";
export declare class ClrTreetableRow implements OnInit {
    expanded: boolean;
    clickable: boolean;
    expandable: boolean;
    hasActionOverflow: EventEmitter<boolean>;
    expandedChange: EventEmitter<boolean>;
    showActionOverflow: boolean;
    showEmptyActionOverflow: boolean;
    showClickClass: boolean;
    set actionOverflow(actionOverflow: ClrTreetableActionOverflow);
    constructor();
    ngOnInit(): void;
    private toggleExpand;
    onRowClick(event: MouseEvent): void;
    onCaretClick(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<ClrTreetableRow, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<ClrTreetableRow, "clr-tt-row", never, { "expanded": { "alias": "clrExpanded"; "required": false; }; "clickable": { "alias": "clrClickable"; "required": false; }; "expandable": { "alias": "clrExpandable"; "required": false; }; }, { "hasActionOverflow": "hasActionOverflow"; "expandedChange": "clrExpandedChange"; }, ["actionOverflow"], ["clr-tt-action-overflow", "clr-tt-cell", "clr-tt-row"], false, never>;
}
