import { Globals } from "./index"; /** * The **`mask-border-mode`** CSS property specifies the blending mode used in a mask border. * * **Initial value**: `alpha` */ export type MaskBorderModeProperty = Globals | "alpha" | "luminance";