export declare class NameGenerator {
    private static names;
    static generate(name: string): string;
    static clear(): void;
}
