import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type AddGuestContactsInput = { contractId: string; houseId: string; guestContact: { email: string; }; }; declare const addGuestContacts: (http: HttpClient) => { query: (input: AddGuestContactsInput) => Promise>; }; export default addGuestContacts;