import { StyleOptions } from '../../types'; export interface MaskClipProps { /** * The **`mask-clip`** CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area. * * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip */ style$MaskClip: T; } export declare const maskClip: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;