import type { Credit } from '../../../../../../../entities/index.ts'; import type { FilterType, HttpClient, IncludeType } from '../../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../../types/index.ts'; export type GetSignatoryCredits = { houseId: string; included?: IncludeType; filter?: FilterType; pagination?: { per: string; page: string; }; }; declare const getCredits: (http: HttpClient) => { query: (input: GetSignatoryCredits) => Promise>; }; export default getCredits;