import type { ApiClient } from "@promobase/sdk-runtime"; import type { HighDemandPeriodTimeSuggestionWeeklySegmentFields } from "./high-demand-period-time-suggestion-weekly-segment.ts"; export interface HighDemandPeriodFields { ad_object_id: string; budget_value: number; budget_value_type: string; id: string; recurrence_type: string; time_end: string; time_start: string; weekly_schedule: HighDemandPeriodTimeSuggestionWeeklySegmentFields[]; } export interface HighDemandPeriodUpdateParams { budget_value?: number; budget_value_type?: string; time_end?: number; time_start?: number; [key: string]: unknown; } export declare function highDemandPeriodNode(client: ApiClient, id: string): { __path: string; __brand: HighDemandPeriodFields; get: (opts: { fields: F; params?: Record; }) => Promise>; update: (params: HighDemandPeriodUpdateParams) => Promise; delete: () => Promise; }; //# sourceMappingURL=high-demand-period.d.ts.map