import { SnProof, SnSensioClaim, SnSensioCopyrightClaim, SnSensioOwnershipClaim } from '@sensio/types'; /** * Create the Ownership Claim from PoE record * @param poe * @returns the typescript native Ownership Claim object */ export declare function createOwnershipClaimFromPoE(poe: SnProof, claim?: Partial): SnSensioOwnershipClaim; /** * Create the Copyright Claim from PoE record * @param poe * @returns the typescript native Copyright Claim object */ export declare function createCopyrightClaimFromPoE(poe: SnProof, claim?: Partial): SnSensioCopyrightClaim; /** * Create the Claim from PoE record with default records * @param poe The proof from which claim will be generated * @param claim The claim object where user can override defaults. We merge this with the defaults * @returns the typescript native Claim object */ export declare function createClaimFromPoE(poe: SnProof, claim?: Partial): SnSensioClaim; //# sourceMappingURL=createClaimFromPoE.d.ts.map