import type { HouseStaff } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type RemoveHouseStaffInput = { houseStaffId: string; }; declare const modifyHouseStaff: (http: HttpClient) => { query: (input: RemoveHouseStaffInput) => Promise>; }; export default modifyHouseStaff;