import type { Credit } from '../../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../../types/index.ts'; type AssignCredits = { expectedPayOutId: string; creditIds: string[]; }; declare const assignCredits: (http: HttpClient) => { query: (input: AssignCredits) => Promise>; }; export default assignCredits;