import { StyleOptions } from '../../types'; export interface MaskProps { /** * The **`mask`** CSS property hides an element (partially or fully) by masking or clipping the image at specific points. * * @see https://developer.mozilla.org/docs/Web/CSS/mask */ style$Mask: T; } export declare const mask: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;