import { type ContractRunner } from "ethers"; import type { IFeeReducer, IFeeReducerInterface } from "../../escrow/IFeeReducer"; export declare class IFeeReducer__factory { static readonly abi: readonly [{ readonly inputs: readonly [{ readonly internalType: "uint256"; readonly name: "orgId"; readonly type: "uint256"; }, { readonly internalType: "address"; readonly name: "token"; readonly type: "address"; }, { readonly internalType: "uint256"; readonly name: "fee"; readonly type: "uint256"; }]; readonly name: "reduceFee"; readonly outputs: readonly [{ readonly internalType: "uint256"; readonly name: ""; readonly type: "uint256"; }]; readonly stateMutability: "view"; readonly type: "function"; }]; static createInterface(): IFeeReducerInterface; static connect(address: string, runner?: ContractRunner | null): IFeeReducer; }