export declare class StringIdGenerator {
    private readonly chars;
    private ids;
    constructor(chars?: string);
    next(): string;
    private increment;
}
