import { EnumType, StructType } from '@terradharitri/sdk-core'; import { DcdtTokenPaymentType } from './dcdt.token.payment.type'; export declare class DcdtTokenPayment { tokenIdentifier: string; tokenNonce: number; amount: string; constructor(init: DcdtTokenPaymentType); toJSON(): DcdtTokenPaymentType; static fromAttributes(attributes: string): DcdtTokenPayment; static fromDecodedAttributes(decodedAttributes: any): DcdtTokenPayment; static getStructure(withTokenType?: boolean): StructType; } export declare class DcdtTokenType { name: string; discriminant: number; constructor(init: DcdtTokenType); static getEnum(): EnumType; }