import type { ApiClient } from "@promobase/sdk-runtime"; import type { EventFields } from "./event.ts"; import type { PlaceFields } from "./place.ts"; export interface StatusFields { event: EventFields; from: Record; id: string; message: string; place: PlaceFields; updated_time: string; } export interface StatusCreateLikesParams { feedback_source?: string; nectar_module?: string; notify?: boolean; tracking?: string; [key: string]: unknown; } export declare function statusNode(client: ApiClient, id: string): { __path: string; __brand: StatusFields; get: (opts: { fields: F; params?: Record; }) => Promise>; createLike: (params: StatusCreateLikesParams) => Promise; }; //# sourceMappingURL=status.d.ts.map