export declare const ICON_PATTERNS: Record; /** * Match a user query to icon resourceId patterns. * Returns array of patterns to search for, or null if no match. */ export declare function matchIconPattern(query: string): string[] | null; /** * Check if a resourceId matches any of the given patterns. */ export declare function matchesResourceId(resourceId: string, patterns: string[]): boolean;