/** * Creates a unique identifier. Can be used to generate a DeviceId * @returns The newly created UUID */ declare const createUniqueIdentifier: () => string; /** * Creates a new timestamp * @returns The current timestamp */ declare const getCurrentTimestamp: () => string; export { createUniqueIdentifier, getCurrentTimestamp };