import type { UIPattern } from '../types/index.js'; /** * Common UI patterns and their component compositions */ export declare const PATTERNS: Record; /** * Get pattern by name */ export declare function getPattern(name: string): UIPattern | undefined; /** * Search patterns by keyword */ export declare function searchPatterns(query: string): UIPattern[]; /** * Get patterns by category */ export declare function getPatternsByCategory(category: string): UIPattern[]; //# sourceMappingURL=patterns.d.ts.map