export interface UxmlRefEvidence { guid: string; line: number; snippet: string; } export interface ParsedUxmlRefs { templates: UxmlRefEvidence[]; styles: UxmlRefEvidence[]; } export declare function parseUxmlRefs(content: string): ParsedUxmlRefs;