import { HtmlSsgContext } from "ssg-api"; import { ReferenceGenerator } from "./ReferenceGenerator.js"; export declare abstract class PerFileCounter implements ReferenceGenerator { /** * Source counter in the scope of the current page/context. */ protected number: number; /** * The current/previous page * * @protected */ protected fileName: string; get value(): string; next(context: C): string; }