import { DUCXTxProvider } from '../ducx';
export declare class ERC721TxProvider extends DUCXTxProvider {
    getERC721Contract(tokenContractAddress: string): import("web3/eth/contract").default;
    create(params: {
        recipients: Array<{
            address: string;
            amount: string;
        }>;
        nonce: number;
        gasPrice: number;
        data: string;
        gasLimit: number;
        tokenAddress: string;
        from: string;
        tokenId: number;
        chainId?: number;
    }): string;
    encodeData(params: {
        recipients: Array<{
            address: string;
            amount: string;
        }>;
        tokenAddress: string;
        from: string;
        tokenId: number;
    }): string;
}
//# sourceMappingURL=index.d.ts.map