import { SimpleIdGenerator } from '../ids'; export declare class IdGenerators { static handlers: Record; static handlersByEntity: Record; static exists(prefix: string, entity: string): boolean; static reg(prefix: string, entity: string): void; static nextId(prefix: string): string; static nextIdByEntity(entity: string): string; }