import { Fee } from './Fee';
import { PrivateKeyOrSignatureId } from './PrivateKeyOrSignatureId';
export declare class DeployErc20 extends PrivateKeyOrSignatureId {
    name: string;
    symbol: string;
    address: string;
    supply: string;
    totalCap?: string;
    digits: number;
    nonce?: number;
    fee?: Fee;
    url?: string;
    from?: string;
}
