import { ISerializable, Serializable } from "@js-soft/ts-serval"; import { CoreId, ICoreId } from "@nmshd/core-types"; export interface ICoreSynchronizable extends ISerializable { id: ICoreId; } export declare abstract class CoreSynchronizable extends Serializable implements ICoreSynchronizable { readonly technicalProperties: string[]; readonly contentProperties: string[]; readonly userdataProperties: string[]; readonly metadataProperties: string[]; id: CoreId; } //# sourceMappingURL=CoreSynchronizable.d.ts.map