import { Rectangle } from "./rectangle";
import { RowRecognized } from "./rowRecognized";
import { LinkElement } from "./linkElement";
export declare class TableRecognized extends LinkElement {
    'rowList': Array<RowRecognized>;
    'rectangle': Rectangle;
    'pageNum': number;
    'id': string;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
