import { FctAddress, FctUInt112, FctUinteger32 } from '../../../../Fct/generics'; export declare const GetReserves: { new (args: { chainId: import("../../../../Fct/generics").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"UNISWAP", "GETTER", "getReserves", string | undefined, { input: { to: FctAddress; methodParams: {}; }; output: { reserve0: FctUInt112; reserve1: FctUInt112; blockTimestamp: FctUinteger32; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };