import type { AdminUser, Comment } from '../../../../../../entities/index.ts'; import type { FilterType, HttpClient, IncludeType } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetCommentInput = { contractId: string; include?: IncludeType; filter?: FilterType; pagination?: { per: string; page: string; }; }; declare const getComments: (http: HttpClient) => { query: (input: GetCommentInput) => Promise>; }; export default getComments;