export declare class UniqueFilenameAllocator {
    private readonly baseDir;
    private readonly fallback?;
    private readonly used;
    constructor(baseDir: string, fallback?: string | undefined);
    allocate(name: string): string;
}
