import type { HttpClient, IncludeType } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type GetGuestContactsInput = { contractId: string; included?: IncludeType; }; declare const getGuestContactsList: (http: HttpClient) => { query: (input: GetGuestContactsInput) => Promise>; }; export default getGuestContactsList;