import { MaskTypePropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface MaskTypeProps { /** * The **`mask-type`** CSS property sets whether an SVG `` element is used as a _luminance_ or an _alpha_ mask. It applies to the `` element itself. * * @see https://developer.mozilla.org/docs/Web/CSS/mask-type */ style$MaskType: T; } export declare const maskType: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;