import { TtDataType } from './tt-data-type'; export declare class TreeTableHeaderObject { dataProperty: string; title: string; style: string; show: boolean; dataType: TtDataType; dataTypeArgs: { [key: string]: any; }; enableColumnSearch: boolean; canChangeVisbilityOnRuntime: boolean; constructor(title: string, dataProperty: string, style: string, show: boolean, canChangeVisibilityOnRuntime?: boolean); }