declare enum PROTOCOL { BCH = "BCH", BTC = "BTC", ETH = "ETH" } interface SendAssetsInput { to: string; protocol: PROTOCOL; assetId?: string; value: string; opReturn?: string[]; } interface SendAssetsOutput { txid: string; } export default function sendAssets(data: SendAssetsInput): Promise; export {}; //# sourceMappingURL=sendAssets.d.ts.map