export interface XmlSchema { tagName: string; description?: string; attributes: Record; base?: string; internal?: boolean; } export interface XmlAttribute { name: string; type?: string; description?: string; use?: "optional" | "required" | "prohibited"; } export declare function resolveSchemas(entryUrl?: string): Promise; //# sourceMappingURL=collect-schemas.d.ts.map