import { PatternCreator } from './types'; export type DotsPatternConfig = { color?: string; background?: string; size?: number; rows?: number; align?: 'center' | 'top' | 'bottom'; spacing?: number; verticalSpicing?: number; horizontalSpicing?: number; }; export declare const dotsPattern: ({ color, background, size, rows, align, spacing, verticalSpicing, horizontalSpicing, }?: DotsPatternConfig) => PatternCreator;