/**
 * Generate a UUIDv7 (time-ordered UUID)
 * UUIDv7 is designed to be time-ordered and includes a timestamp component
 */
export declare function generateUUIDv7(): string;
/**
 * Validate if a string is a valid UUIDv7
 */
export declare function isValidUUIDv7(uuid: string): boolean;
