export type DeviceMeta = { currentUrl: string; referrerUrl: string; userAgent: string; language: string; screenResolution: string; viewportSize: string; timezone: string; platform: string; }; declare class DeviceInspector { static getMeta(): DeviceMeta; static getPromptBlock(): string; } export default DeviceInspector;