import { Wallet } from '@dynamic-labs/wallet-connector-core'; import { FlowWalletConnector } from '../FlowWalletConnector'; export declare class FlowWallet extends Wallet { /** * Sends the native balance of the wallet to the given address. * @param amount - The amount of balance to send (in FLOW). * @param toAddress - The address to send the balance to. * @returns The transaction id of the sent transaction. */ sendBalance({ amount, toAddress, }: { amount?: string; toAddress: string; }): Promise; }