export declare class IdAllocator { private maxSuffix; /** Record an existing id (from any source, or already present in a file being imported) so a * later `next()` never collides with it. */ note(id: string): void; next(prefix: string): string; }