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