import { FctAddress, FctValue } from '../../../../Fct/generics'; export declare const GetMarkets: { 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<"SyntheticsReader", "GETTER", "getMarkets", string | undefined, { input: { to: FctAddress; methodParams: { dataStore: FctAddress; start: FctValue; end: FctValue; }; }; output: { 'marketData_tuple[]': { marketToken: FctAddress; indexToken: FctAddress; longToken: FctAddress; shortToken: FctAddress; }; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };