import { Globals } from "./index";
/**
* The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `
` cells that have no visible content.
*
* **Initial value**: `show`
*
* | Chrome | Firefox | Safari | Edge | IE |
* | :----: | :-----: | :-----: | :----: | :---: |
* | **1** | **1** | **1.2** | **12** | **8** |
*
* @see https://developer.mozilla.org/docs/Web/CSS/empty-cells
*/
export type EmptyCellsProperty = Globals | "hide" | "show";