declare type Result = Record; export declare function balance(): Promise; interface TransferOptions { asset: string; amount: number; isFromSpotToFutures: boolean; } export declare function transfer({ asset, amount, isFromSpotToFutures, }: TransferOptions): Promise<{ tranId: number; }>; export {}; //# sourceMappingURL=spot.d.ts.map