import { FctAddress, FctPercent, FctValue, FctValue27 } from '../../../../Fct/generics'; import { Variable } from '../../../../Fct/plugins/corelibTypes'; export declare const ApyLessThan: { new (args: { chainId: import("../../../../Fct/generics").ChainId; initParams?: Partial<{ to: string | Variable | undefined; rateValue: string | Variable | undefined; apyValue: string | Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"AAVE", "VALIDATOR", "lessThan", "apyLessThan", { input: { to: FctAddress; rateValue: FctValue27; apyValue: FctPercent; methodParams: { value1: FctValue; value2: FctValue; }; }; output: { value: FctValue; }; }, Partial<{ to: string | Variable | undefined; rateValue: string | Variable | undefined; apyValue: string | Variable | undefined; methodParams: unknown; }>>; };