import { HtmlRR0Context } from "RR0Context.js";
export declare class Chapter {
protected startFileName: string;
readonly context: HtmlRR0Context;
subs: Chapter[];
constructor(parentContext: HtmlRR0Context, startFileName: string);
scan(): Promise;
toString(prefix?: string): string;
update(parent?: Chapter): Promise;
}