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