import { MarketWithProduct } from '../common/types/marketTypes.js'; import { WithContracts } from '../common/types/nadoContractTypes.js'; import '../common/types/productTypes.js'; import '@nadohq/utils'; import '../common/nadoAbis.js'; import '../common/types/viemTypes.js'; import 'viem'; type GetAllMarketsResponse = MarketWithProduct[]; /** * Return all markets registered with the clearinghouse. Calls querier internally. * This also returns quote product with a zero market */ declare function getAllMarkets({ querier, }: WithContracts): Promise; export { type GetAllMarketsResponse, getAllMarkets };