import type { AdPartner, AdPartnerPayload } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; type AddAdPartnerInput = { houseId: string; payload: AdPartnerPayload; }; declare const addAdPartner: (http: HttpClient) => { query: (input: AddAdPartnerInput) => Promise>; }; export default addAdPartner;