import type { BaseContract, BigNumber, BytesLike, CallOverrides, ContractTransaction, PayableOverrides, PopulatedTransaction, Signer, utils } from "ethers"; import type { FunctionFragment, Result } from "@ethersproject/abi"; import type { Listener, Provider } from "@ethersproject/providers"; import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "../../common"; export interface MockAuctionInterface extends utils.Interface { functions: { "buyItNow()": FunctionFragment; }; getFunction(nameOrSignatureOrTopic: "buyItNow"): FunctionFragment; encodeFunctionData(functionFragment: "buyItNow", values?: undefined): string; decodeFunctionResult(functionFragment: "buyItNow", data: BytesLike): Result; events: {}; } export interface MockAuction extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: MockAuctionInterface; queryFilter(event: TypedEventFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>; listeners(eventFilter?: TypedEventFilter): Array>; listeners(eventName?: string): Array; removeAllListeners(eventFilter: TypedEventFilter): this; removeAllListeners(eventName?: string): this; off: OnEvent; on: OnEvent; once: OnEvent; removeListener: OnEvent; functions: { buyItNow(overrides?: PayableOverrides & { from?: PromiseOrValue; }): Promise; }; buyItNow(overrides?: PayableOverrides & { from?: PromiseOrValue; }): Promise; callStatic: { buyItNow(overrides?: CallOverrides): Promise; }; filters: {}; estimateGas: { buyItNow(overrides?: PayableOverrides & { from?: PromiseOrValue; }): Promise; }; populateTransaction: { buyItNow(overrides?: PayableOverrides & { from?: PromiseOrValue; }): Promise; }; } //# sourceMappingURL=MockAuction.d.ts.map