import { Fee } from './Fee';
import { PrivateKeyOrSignatureId } from './PrivateKeyOrSignatureId';
export declare class MintErc20 extends PrivateKeyOrSignatureId {
    to: string;
    amount: string;
    contractAddress: string;
    nonce?: number;
    fee?: Fee;
}
