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 AddPeriodPriceInput = { houseId: string; payload: PeriodPricePayload; }; declare const addPeriodPrice: (http: HttpClient) => { query: (input: AddPeriodPriceInput) => Promise>; }; export default addPeriodPrice;