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