import type { ApiClient } from "@promobase/sdk-runtime"; import { Cursor } from "@promobase/sdk-runtime"; import type { AdVideoFields } from "./ad-video.ts"; export interface VideoListFields { creation_time: string; description: string; id: string; last_modified: string; owner: Record; season_number: number; thumbnail: string; title: string; videos_count: number; } export declare function videoListNode(client: ApiClient, id: string): { __path: string; __brand: VideoListFields; get: (opts: { fields: F; params?: Record; }) => Promise>; videos: (opts: { fields: F; params?: Record; }) => Cursor>; }; //# sourceMappingURL=video-list.d.ts.map