import type { Fcl } from "@rarible/fcl-types"; import type { BigNumberLike, FlowContractAddress, Maybe } from "@rarible/types"; import type { AuthWithPrivateKey, FlowCurrency, FlowNetwork, FlowOriginFees } from "../types"; import type { FlowItemId } from "../common/item"; import type { FlowSellResponse } from "./sell"; export declare function bid(fcl: Maybe, auth: AuthWithPrivateKey, network: FlowNetwork, collection: FlowContractAddress, currency: FlowCurrency, itemId: FlowItemId, price: BigNumberLike, originFee?: FlowOriginFees): Promise;