import { Key } from '../../derivation'; export declare class DUCXTxProvider { create(params: { recipients: Array<{ address: string; amount: string; }>; nonce: number; gasPrice: number; data: string; gasLimit: number; chainId?: number; network?: string; }): string; getSignatureObject(params: { tx: string; key: Key; }): any; getSignature(params: { tx: string; key: Key; }): string; getHash(params: { tx: string; }): string; applySignature(params: { tx: string; signature: any; }): string; sign(params: { tx: string; key: Key; }): string; } //# sourceMappingURL=index.d.ts.map