import { PlaylistPage, TemplateBundle, TemplateEntry } from '@signage-editor/core'; export interface CreateExportBundleOptions { entries: TemplateEntry[]; activeEntryIndex: number; bundleName: string; strategyType: 'playlist' | 'scheduled'; defaultEntryId: string | null; bundleLoop: boolean; canvasWidth: number; canvasHeight: number; canvasBackground: string; pages: PlaylistPage[]; } export declare function createExportBundle(options: CreateExportBundleOptions): TemplateBundle;