export declare class TableView {
    node: any;
    cellMinWidth: any;
    dom: any;
    table: any;
    colgroup: any;
    contentDOM: any;
    constructor(node: any, cellMinWidth: any);
    update(node: any): boolean;
    ignoreMutation(record: any): any;
}
export declare function updateColumns(dom?: any, node?: any, colgroup?: any, table?: any, cellMinWidth?: any, overrideCol?: any, overrideValue?: any): void;
