import { Builders } from "@uns/core-nft-crypto"; import { UnsTransactionType } from "../enums"; import { ICertifiedDemand, INftDemandCertification, INftDemandPayload } from "../interfaces"; export declare class UNSCertifiedNftTransferBuilder extends Builders.NftTransferBuilder { protected nftName: string; constructor(nftName: string, tokenId: string); certification(certification: INftDemandCertification): this; demand(demand: ICertifiedDemand): this; protected fees(): import("@arkecosystem/utils").BigNumber; protected type(): UnsTransactionType; protected getTypeGroup(): number; }