import { Cell, Column, PopupModel, Table, TableRow } from '../../index';
export interface CellEditorPopupModel<TValue> extends PopupModel {
    column?: Column<TValue>;
    cell?: Cell<TValue>;
    table?: Table;
    row?: TableRow;
}
//# sourceMappingURL=CellEditorPopupModel.d.ts.map