/** * Vue-aware "Save from Controls" handler * * Intercepts Storybook's SAVE_STORY_REQUEST for .stories.vue files * and handles saving with Vue SFC-aware parsing instead of Babel. */ interface Channel { on: (event: string, handler: (data: any) => void) => void; emit: (event: string, data: any) => void; } /** * Register the Vue CSF save story handler on the Storybook channel. */ export declare function initializeSaveStory(channel: Channel): void; export {}; //# sourceMappingURL=index.d.ts.map