/**
 * Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company.
 * @link https://truedirective.com/
 * @license MIT
*/
import { EventEmitter } from '@angular/core';
import { Column } from '@true-directive/base';
import { GridStateService } from '../grid-state.service';
export interface IEditor {
    state: GridStateService;
    column: Column;
    row: any;
    change: EventEmitter<any>;
    commit: EventEmitter<any>;
    cancel: EventEmitter<void>;
    init(value: any, valueChanged: boolean, height: number, ie: boolean, wasShown: boolean): void;
}
