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