import type { ApiClient } from "@promobase/sdk-runtime"; export interface IGUpcomingEventFields { end_time: string; id: string; notification_subtypes: string[]; notification_target_time: string; start_time: string; title: string; } export interface IGUpcomingEventUpdateParams { end_time?: string; notification_subtypes?: string[]; notification_target_time?: string; start_time?: string; title?: string; [key: string]: unknown; } export declare function iGUpcomingEventNode(client: ApiClient, id: string): { __path: string; __brand: IGUpcomingEventFields; get: (opts: { fields: F; params?: Record; }) => Promise>; update: (params: IGUpcomingEventUpdateParams) => Promise; }; //# sourceMappingURL=ig-upcoming-event.d.ts.map