import type { PricingPeriod } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type RemovePricingPeriodInput = { houseId: string; pricingPeriodId: string; }; declare const removePricingPeriod: (http: HttpClient) => { query: (input: RemovePricingPeriodInput) => Promise>; }; export default removePricingPeriod;