import { OnInit } from '@angular/core'; import { services } from 'typescript-angular-utilities'; import __transform = services.transform; import { IColumn } from '../../column'; import { ColumnContentTemplate } from '../../templates/columnContent.template'; import { SizeForBreakpoints } from './sizeForBreakpoints'; export declare class CardHeaderColumnComponent implements OnInit { column: IColumn; item: T; columnTemplate: ColumnContentTemplate; readonly value: string | number | boolean; readonly context: any; sizeClass: string; transformService: __transform.ITransformService; sizeForBreakpoints: SizeForBreakpoints; constructor(transformService: __transform.TransformService, sizeForBreakpoints: SizeForBreakpoints); ngOnInit(): void; }