import { IdGeneratorOptions, CollisionStrategy, BatchOptions } from "../types/index"; /** * Core generation methods for NehoID */ export declare class CoreGenerators { static generate(options?: Partial): string; static safe(options: CollisionStrategy): Promise; static uuid(): string; static nanoid(length?: number): string; static short(length?: number): string; static hex(length?: number): string; static batch(options: BatchOptions): string[]; } //# sourceMappingURL=generators.d.ts.map