/** * @author WMXPY * @namespace Common * @description Properties */ import { IMBRICATE_PROPERTY_TYPE, ImbricatePropertyRecord, ImbricatePropertyValueObject, ImbricatePropertyVariant } from "@imbricate/core"; export type DocumentPropertyInstance = { readonly key: string; readonly type: IMBRICATE_PROPERTY_TYPE; readonly value: ImbricatePropertyValueObject; readonly variant: ImbricatePropertyVariant; }; export type DocumentPropertyInstanceRecord = Record; export declare const recordToInstanceRecord: (record: ImbricatePropertyRecord) => DocumentPropertyInstanceRecord;