import type { StoredUserRecord } from "./types"; import type { UserRecordActor } from "./UserRecordActor"; export type HydrateUserRecordInput = { publicKey: string; data: StoredUserRecord; getOrCreateUserRecord(publicKey: string): UserRecordActor; rememberDelegate(deviceId: string, ownerPubkey: string): void; rememberProcessedInviteResponse(eventId: string): void; }; export declare function hydrateUserRecord(input: HydrateUserRecordInput): void; //# sourceMappingURL=userRecordHydration.d.ts.map