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