import * as React from 'react';
interface GridInputProps {
    onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
    onKeyDown: (event: React.KeyboardEvent<HTMLInputElement>) => void;
    visible: boolean;
}
declare const GridInput: React.ForwardRefExoticComponent<GridInputProps & React.RefAttributes<HTMLInputElement>>;
export default GridInput;
