import { MarketWithProduct } from '../common/types/marketTypes.cjs'; import { WithContracts } from '../common/types/nadoContractTypes.cjs'; import '../common/types/productTypes.cjs'; import '@nadohq/utils'; import '../common/nadoAbis.cjs'; import '../common/types/viemTypes.cjs'; 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 };