import { ChainId } from '@synthra-swap/sdk/core'; import { V3SubgraphPool } from './v3/subgraph-provider'; /** * Gets subgraph pools from a URI. The URI shoudl contain a JSON * stringified array of V3SubgraphPool objects. * * @export * @class URISubgraphProvider * @template TSubgraphPool */ export declare class URISubgraphProvider { private chainId; private uri; private timeout; private retries; constructor(chainId: ChainId, uri: string, timeout?: number, retries?: number); getPools(): Promise; }