export declare type UUIDv7 = string & { readonly __brand: unique symbol; }; /** * Generate a UUIDv7 (time-ordered, monotonic). * RFC 9562: https://www.rfc-editor.org/rfc/rfc9562.html */ export declare const uuidv7: () => UUIDv7; export { }