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