import { TimeEditor } from '../../editors/timeEditor'; import { valueFormatter } from '../../renderers/timeRenderer'; import { timeValidator, sourceDataValidator } from '../../validators/timeValidator'; export declare const CELL_TYPE: 'time'; export declare const TimeCellType: { CELL_TYPE: "time"; editor: typeof TimeEditor; renderer: import("../../renderers/timeRenderer/timeRenderer").TimeRendererFn; validator: typeof timeValidator; sourceDataValidator: typeof sourceDataValidator; sourceDataWarningMessage: string; valueFormatter: typeof valueFormatter; };