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 AddPoolInput = { payload: PoolPayload; }; declare const addPool: (http: HttpClient) => { query: (input: AddPoolInput) => Promise>; }; export default addPool;