import { CellEditor, CellEditorParams } from "../../grid/cell";
interface Props {
    type?: string;
}
export declare class InputEditor extends CellEditor<Props> {
    protected input: HTMLInputElement;
    init(params: CellEditorParams<Props>): void;
    gui(): HTMLElement;
    afterAttached(): void;
    getValue(): any;
}
export default InputEditor;
