export interface VideoAnimationDef { id: string; label: string; group: string; /** CapCut-style: In / Out / Combo (sets both) */ slot: 'in' | 'out' | 'combo'; type: string; /** Used when slot is combo */ outType?: string; durationMs: number; glyph?: string; } export declare const VIDEO_ANIMATION_MIME = "application/x-r2-video-animation"; interface VideoAnimationsPanelProps { class?: string; disabled?: boolean; hint?: string; onapply?: (def: VideoAnimationDef) => void; } declare const VideoAnimationsPanel: import("svelte").Component; type VideoAnimationsPanel = ReturnType; export default VideoAnimationsPanel;