import type { Fcl } from "@rarible/fcl-types"; import type { BigNumberValue } from "@rarible/utils"; import type { Maybe } from "@rarible/types"; import type { FlowAddress } from "@rarible/types"; import type { AuthWithPrivateKey, FlowCurrency, FlowNetwork } from "../types"; export type TransferFlowRequest = { recipient: FlowAddress; currency: FlowCurrency; amount: BigNumberValue; }; export declare function transferFunds(fcl: Maybe, network: FlowNetwork, auth: AuthWithPrivateKey, request: TransferFlowRequest): Promise;