import { OnInit } from '@angular/core'; import { McbGridColumnAlign } from '../type/enum/mcb-grid-column-align'; import { McbGridColumnType } from '../type/enum/mcb-grid-column-type'; export declare class McbGridCellComponent implements OnInit { constructor(); _alignStyle: string; value: any; cell: Object; type: McbGridColumnType; align: McbGridColumnAlign; field: string; ngOnInit(): void; getAlign(): void; isString(type: string): boolean; isNumber(type: string): boolean; isBoolean(type: string): boolean; isDate(type: string): boolean; isJalaliDate(type: string): boolean; isMoney(type: string): boolean; resolveObject(field: any, obj: any): any; }