import type { BigintIsh, Currency } from '@wicchain/swap-sdk-core'; import type { OnChainProvider } from '../../v3-router/types'; type WithMulticallGasLimit = { gasLimit?: BigintIsh; }; type WithClientProvider = { clientProvider?: OnChainProvider; }; export type GetV4CandidatePoolsParams = { currencyA?: Currency; currencyB?: Currency; } & WithClientProvider & WithMulticallGasLimit; export {}; //# sourceMappingURL=pool.d.ts.map