import { ChapterInput } from '@layers-app/shared'; type ChapterResponse = ChapterInput & { auto?: boolean; thumb?: { sheetUrl?: string; x?: number; y?: number; w?: number; h?: number; }; }; type ApiOptions = { baseUrl?: string; authToken?: string; }; export declare function listChaptersEffective(videoId: string, options?: ApiOptions): Promise; export declare function listChaptersSuggest(videoId: string, options?: ApiOptions): Promise; export declare function saveChapters(videoId: string, chapters: ChapterInput[], options?: ApiOptions): Promise; export type { ChapterResponse, ApiOptions }; //# sourceMappingURL=videoChaptersApi.d.ts.map