import { PatternCreator } from './types'; import { TriangleDirections } from '../types'; export type TrianglesPatternConfig = { color?: string; background?: string; width?: number; height?: number; align?: 'center' | 'top' | 'bottom'; direction?: TriangleDirections; spacing?: number; }; export declare const trianglesPattern: ({ color, background, width, height, align, direction, spacing, }: TrianglesPatternConfig) => PatternCreator;