import type { Pool } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type GetPoolsInput = { poolIds: string[]; }; declare const getPools: (http: HttpClient) => { query: (input: GetPoolsInput) => Promise>; }; export default getPools;