import { JSONSchema } from '../../validation'; import { MerkleProof } from '../merkle-tree'; import { BaseItem } from './base-item'; import { Mappings } from './linked-wearable-mappings'; export type ThirdPartyProps = { merkleProof: MerkleProof; content: Record; mappings?: Mappings; }; export declare const schema: JSONSchema; export declare function isThirdParty(item: T): item is T & ThirdPartyProps; //# sourceMappingURL=third-party-props.d.ts.map