import { HtmlRR0Context } from "./RR0Context.js";
import { ReplaceCommand } from "ssg-api";
/**
* Adds an "abstract" HTML paragraph from a , if any.
*/
export declare class DescriptionReplaceCommand implements ReplaceCommand {
protected readonly defaultDescription: string;
protected readonly abstractClass: string;
constructor(defaultDescription: string, abstractClass?: string);
execute(context: HtmlRR0Context): Promise;
contentStepEnd(): Promise;
}