import type { ApiClient } from "@promobase/sdk-runtime"; import type { ProductFeedScheduleInterval } from "../enums.ts"; export interface ProductFeedScheduleFields { day_of_month: number; day_of_week: string; hour: number; id: string; interval: ProductFeedScheduleInterval; interval_count: number; minute: number; timezone: string; url: string; username: string; } export declare function productFeedScheduleNode(client: ApiClient, id: string): { __path: string; __brand: ProductFeedScheduleFields; get: (opts: { fields: F; params?: Record; }) => Promise>; }; //# sourceMappingURL=product-feed-schedule.d.ts.map