///
import { IColumnProps } from "../IColumnProps";
/**
* This component is absolutely positioned on the grid when a cell is being
* edited. It renders the column prop's editor for that cell
*/
export declare const Editor: ({ columnProps, rows, numHeaders, }: {
columnProps: IColumnProps[];
rows: TRow[];
numHeaders: number;
}) => JSX.Element | null;