import type { FunctionalComponent } from 'vue' import type { BackgroundVariant } from './types' interface LinePatternProps { dimensions: [number, number] size?: number color: string } export declare const LinePattern: FunctionalComponent interface DotPatternProps { radius: number color: string } export declare const DotPattern: FunctionalComponent export declare const Patterns: { lines: FunctionalComponent dots: FunctionalComponent } export declare const DefaultBgColors: Record export {}