import { SlideLayout, SlideTheme } from '@mulmocast/deck'; export type SampleDeck = { /** Stable key for the picker dropdown. */ key: string; /** Display label. */ label: string; /** Short hint shown under the label. */ description?: string; slides: SlideLayout[]; theme?: SlideTheme; }; /** Registered samples in picker order. The first one is the initial deck. */ export declare const SAMPLES: SampleDeck[];