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