import { Column } from "../../index.js"; /** * Hide a column */ declare const hide: (column: Column) => void; /** * Show a column */ declare const show: (column: Column) => void; /** * Ask if a column is presently supposed to be visible */ declare const isVisible: (column: Column) => boolean; /** * Ask if a column is presently supposed to be hidden */ declare const isHidden: (column: Column) => boolean; export { hide, show, isVisible, isHidden };