import React from 'react';
export interface PatternProps {
    children?: React.ReactNode;
    className?: string;
    maskUrl?: string;
    maskSize?: 'contain' | 'cover' | string;
    textureUrl?: string;
    opacity?: number;
    mode?: 'composite' | 'texture-only';
    mixBlendMode?: 'hard-light' | 'multiply';
    textureSize?: string;
}
declare const Pattern: React.FC<PatternProps>;
export default Pattern;
