import { Currency } from './Currency';
import { Fee } from './Fee';
import { PrivateKeyOrSignatureId } from './PrivateKeyOrSignatureId';
export declare class MintMultiToken extends PrivateKeyOrSignatureId {
    to: string;
    tokenId: string;
    chain: Currency;
    contractAddress: string;
    nonce?: number;
    data: string;
    amount: string;
    fee?: Fee;
    url?: string;
    from?: string;
}
