import { TemplateAnalysis } from "@opticss/template-api"; import { TestTemplate } from "./TestTemplate"; export declare class SimpleAnalyzer { template: TestTemplate; includeSourceInformation: boolean; private valueParser; /** * Creates an instance of SimpleAnalyzer. * @param template The template to be analyzed. * @param [includeSourceInformation=false] Whether to record source positions * for elements in the analysis. */ constructor(template: TestTemplate, includeSourceInformation?: boolean); /** * Analyze the TestTemplate. * @returns A promise that resolves with the analysis object after parsing. */ analyze(): Promise>; } //# sourceMappingURL=SimpleAnalyzer.d.ts.map