import type { AdminUser, Audit } from '../../../../../entities/index.ts'; import type { FilterType, HttpClient, IncludeType } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type GetAuditByIdInput = { model: 'house' | 'change_request' | 'export'; id: string; attribute: string | null; include?: IncludeType; filter?: FilterType; pagination?: { per: string; page: string; }; }; export type GetAuditByIdIncluded = { adminUsers: AdminUser | AdminUser[]; }; declare const getAuditById: (http: HttpClient) => { query: (input: GetAuditByIdInput) => Promise>; }; export default getAuditById;