import { type UnixTimestamp } from '@localfirst/crdx'; import type { DeviceWithSecrets } from './types.js'; export declare const createDevice: ({ userId, deviceName, deviceInfo, created, seed, }: Params) => DeviceWithSecrets; type Params = { userId: string; deviceName: string; deviceInfo?: any; created?: UnixTimestamp; seed?: string; }; export {}; //# sourceMappingURL=createDevice.d.ts.map