export = Table;
declare function Table(options: any): Table;
declare class Table {
    constructor(options: any);
    pad: any;
    selected: number[] | undefined;
    currentSocket: any;
    table: any[] | undefined;
    popupVisible: boolean | undefined;
    screenIsLocked: boolean | undefined;
    __proto__: any;
    type: string;
    _calculateMaxes(): any[] | null | undefined;
    rows: any;
    _maxes: any[] | null | undefined;
    setRows: (table: any) => void;
    setData(table: any): void;
    align: any;
    render(): any;
}
