/** device and install ID manager backed by localStorage */ declare class Device { /** * get or generate a persistent device ID * @returns the device UUID (persisted in localStorage) */ static getDeviceId(): string; /** * get or generate a persistent install ID * @returns the install UUID (persisted in localStorage) */ static getInstallId(): string; } export default Device;