import { Currency } from './Currency';
export declare class MintMultipleErc721 {
    to: string[];
    tokenId: string[];
    url: string[];
    minter?: string;
    chain: Currency;
    contractAddress: string;
    nonce?: number;
    provenance?: boolean;
    authorAddresses?: string[][];
    cashbackValues?: string[][];
    fixedValues?: string[][];
    erc20?: string;
    fromPrivateKey?: string;
    signatureId?: string;
    index?: number;
}
