import { type CheerioAPI } from "cheerio"; import type { TemplateCache } from "./template-cache.js"; import type { TemplateLoader } from "./template-loader.js"; export interface ApplicatorOpts { templateCache: TemplateCache; templateLoader: TemplateLoader; } export declare class Applicator { #private; constructor(templateCache: TemplateCache, templateLoader: TemplateLoader); apply(document: string, elements: string[]): Promise; build($: CheerioAPI, elements: string[]): Promise; } //# sourceMappingURL=applicator.d.ts.map