export type DevicePreviewState = 'not_deployed' | 'building' | 'ready' | 'unavailable'; export type DevicePreviewSnapshot = { state: DevicePreviewState; projectId: string; message: string; appId?: string; versionId?: string; versionName?: string; reviewStatus?: string; launchUrl?: string; updatedAt?: string; };