export declare class TableColumnVisibilityToggle { /** * The column this visibility toggle works on. */ readonly column: HTMLGlTableColumnElement; /** * When the column is currently visible or invisible. */ enabled: boolean; private changeHandler; private toggleChanged; render(): any; }