/** * Util functions for random ID generation. */ export declare namespace RandomIdUtil { function id(): string; function numberId(): number; function stringId(): string; function uuid(): string; }