export declare class UniqueFilenameAllocator {
    private readonly baseDir;
    private readonly fallback;
    private readonly used;
    constructor(baseDir: string, fallback: string);
    reserve(segment: string): void;
    reservePath(path: string): void;
    allocate(name: string): string;
}
