import { DomReplacer, ReplacerFactory } from "ssg-api";
import { HtmlRR0Context } from "../RR0Context.js";
import { SourceReplacer } from "./SourceReplacer.js";
/**
 * Creates replacers for sources HTML in a given context.
 */
export declare class SourceReplacerFactory implements ReplacerFactory<DomReplacer> {
    protected replacer: SourceReplacer;
    constructor(replacer: SourceReplacer);
    create(context: HtmlRR0Context): Promise<DomReplacer>;
}
