import { StyleOptions } from '../../types'; export interface MaskSizeProps { /** * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio. * * @see https://developer.mozilla.org/docs/Web/CSS/mask-size */ style$MaskSize: T; } export declare const maskSize: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;