import { StringHack, Globals } from "./index"; /** * The **`mask-border-width`** CSS property sets the width of an element's mask border. * * **Initial value**: `auto` */ export type MaskBorderWidthProperty = Globals | TLength | "auto" | StringHack | number;