/** * Storybook scaffold — pure file emitter. The CLI command `jorvel ui storybook` * (and any equivalent build script) uses this to drop a working Storybook * configuration into a workspace without us taking a dependency on Storybook * at install time. */ export interface StorybookFile { /** Relative path under the storybook root. */ path: string; contents: string; } /** * Return the canonical list of files a Storybook scaffold writes. Pure — useful * for tests that check expected filenames + key content fragments. */ export declare function storybookFiles(): StorybookFile[]; /** * Minimal NPM scripts the user needs to wire up to run Storybook after * scaffolding. Returned as a `{ name → command }` map so the CLI can merge * into the workspace `package.json`. */ export declare const storybookScripts: Record; /** Storybook devDependencies the scaffolder hints at adding. */ export declare const storybookDevDeps: Record; //# sourceMappingURL=storybook.d.ts.map