/// import { PathLike } from "fs"; import { IMarkupComponent, IMarkupFile } from "../imarkup-file"; import { IWAConfig } from "../types"; export declare class XamlComponent implements IMarkupComponent { baseType: string; name: string; nsNamespace: string; generated: string; } export declare class XamlFile implements IMarkupFile { file: PathLike; private config; nodes: IMarkupComponent[]; readonly currentTime: number; lastTime: number; nsMap: { [key: string]: string; }; constructor(file: PathLike, config: IWAConfig); compile(): void; compileContent(content: string): string; } //# sourceMappingURL=xaml-file.d.ts.map