import { Globals } from "./index";
/**
* The **`visibility`** CSS property shows or hides an element without changing the layout of a document. The property can also hide rows or columns in a `
`.
*
* **Initial value**: `visible`
*
* | Chrome | Firefox | Safari | Edge | IE |
* | :----: | :-----: | :----: | :----: | :---: |
* | **1** | **1** | **1** | **12** | **4** |
*
* @see https://developer.mozilla.org/docs/Web/CSS/visibility
*/
export type VisibilityProperty = Globals | "collapse" | "hidden" | "visible";