import { Observable } from 'rxjs';
import { t } from '../common';
export declare class BindingMonitor {
    constructor(args: {
        grid: t.IGrid;
    });
    readonly grid: t.IGrid;
    readonly keydown$: Observable<t.IGridKeydown>;
    is(command: t.GridCommand, e: t.IGridKeydown): boolean;
    monitor(command: t.GridCommand, handler: (e: t.IGridKeydown) => void): void;
}
