export declare class Rect {
    left: any;
    top: any;
    right: any;
    bottom: any;
    constructor(left: any, top: any, right: any, bottom: any);
}
export declare class TableMap {
    map: any;
    width: any;
    height: any;
    problems: any;
    constructor(width: any, height: any, map: any, problems: any);
    findCell(pos: any): Rect;
    colCount(pos: any): number;
    nextCell(pos: any, axis: any, dir: any): any;
    rectBetween(a: any, b: any): Rect;
    cellsInRect(rect: any): any[];
    positionAt(row: any, col: any, table: any): any;
    static get(table: any): any;
}
