import { StyleOptions } from '../../types'; export interface MaskRepeatProps { /** * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all. * * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat */ style$MaskRepeat: T; } export declare const maskRepeat: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;