import type { Fcl } from "@rarible/fcl-types"; import type { BigNumberLike, FlowContractAddress, Maybe } from "@rarible/types"; import type { FlowOrder, FlowOrderControllerApi } from "@rarible/flow-api-client"; import type { AuthWithPrivateKey, FlowCurrency, FlowNetwork } from "../types"; import type { FlowSellResponse } from "./sell"; export declare function bidUpdate(fcl: Maybe, auth: AuthWithPrivateKey, network: FlowNetwork, orderApi: FlowOrderControllerApi, collection: FlowContractAddress, currency: FlowCurrency, order: string | number | FlowOrder, price: BigNumberLike): Promise;