import { FctAddress, FctPercent, FctValue, FctValue27 } from '../../../../Fct/generics'; import { Variable } from '../../../../Fct/plugins/corelibTypes'; export declare const ApyBetween: { new (args: { chainId: import("../../../../Fct/generics").ChainId; initParams?: Partial<{ to: string | Variable | undefined; rateValue: string | Variable | undefined; minApyValue: string | Variable | undefined; maxApyValue: string | Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"RADIANTV2", "VALIDATOR", "between", "apyBetween", { input: { to: FctAddress; rateValue: FctValue27; minApyValue: FctPercent; maxApyValue: FctPercent; methodParams: { minValue: FctValue; maxValue: FctValue; value: FctValue; }; }; output: { value: FctValue; }; }, Partial<{ to: string | Variable | undefined; rateValue: string | Variable | undefined; minApyValue: string | Variable | undefined; maxApyValue: string | Variable | undefined; methodParams: unknown; }>>; };