import type { IBlockchainTransaction } from "@rarible/sdk-transaction"; import type { FlowSdk } from "@rarible/flow-sdk"; import type { FlowNetwork } from "@rarible/flow-sdk"; import type { PrepareTransferRequest } from "../../types/nft/transfer/domain"; import type { TransferSimplifiedRequest } from "../../types/nft/transfer/simplified"; import type { PrepareTransferResponse } from "../../types/nft/transfer/domain"; export declare class FlowTransfer { private sdk; private network; constructor(sdk: FlowSdk, network: FlowNetwork); transfer(prepare: PrepareTransferRequest): Promise; transferBasic(request: TransferSimplifiedRequest): Promise; }