export interface Pattern {
    imageUrl: string;
    transparencyPercentage?: string;
    backgroundColor?: string;
    width?: string;
    height?: string;
    repeatX?: boolean;
    repeatY?: boolean;
    repeatCount?: number;
    position?: 'left top' | 'top center' | 'right top' | 'left bottom' | 'bottom center' | 'right bottom' | 'center';
}
//# sourceMappingURL=pattern.model.d.ts.map