import type { InternalContext } from '../../types/cli/context'; import type { CLIPluginExtends } from '../../types/cli/plugin'; import type { CLIRunOptions } from './types'; export declare const createCli: () => { init: (options: CLIRunOptions) => Promise<{ appContext: InternalContext; }>; run: (options: CLIRunOptions) => Promise; getPrevInitOptions: () => CLIRunOptions; }; type UselessOptions = 'handleSetupResult' | 'command' | 'internalPlugins'; export declare const createStorybookOptions: (options: Omit, UselessOptions>) => Promise<{ config: Awaited | NonNullable>>; getAppContext: () => Readonly & Extends["extendContext"]>; }>; export {};