import type { ApiClient } from "@promobase/sdk-runtime"; import { Cursor } from "@promobase/sdk-runtime"; import type { PageFields } from "./page.ts"; import type { ProfileFields } from "./profile.ts"; export interface LifeEventFields { description: string; end_time: string; from: PageFields; id: string; is_hidden: boolean; start_time: string; title: string; updated_time: string; } export declare function lifeEventNode(client: ApiClient, id: string): { __path: string; __brand: LifeEventFields; get: (opts: { fields: F; params?: Record; }) => Promise>; likes: (opts: { fields: F; params?: Record; }) => Cursor>; }; //# sourceMappingURL=life-event.d.ts.map