import type { Keyset, KeysetWithSecrets, UnixTimestamp } from '@localfirst/crdx'; export type DeviceInfo = { userId: string; deviceId: string; deviceName: string; deviceInfo?: any; created?: UnixTimestamp; }; export type DeviceWithSecrets = { keys: KeysetWithSecrets; } & DeviceInfo; export type Device = { keys: Keyset; } & DeviceInfo; export type FirstUseDeviceWithSecrets = Omit; export type FirstUseDevice = Omit; //# sourceMappingURL=types.d.ts.map