import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { IPausable, IPausableInterface } from "../IPausable"; export declare class IPausable__factory { static readonly abi: readonly [{ readonly inputs: readonly []; readonly name: "pause"; readonly outputs: readonly []; readonly stateMutability: "nonpayable"; readonly type: "function"; }]; static createInterface(): IPausableInterface; static connect(address: string, signerOrProvider: Signer | Provider): IPausable; }