import { CliOutputMode } from "../shared/outfitter-fhahf9f3.js"; /** * Options for forwarding to the demo CLI. */ interface DemoOptions { readonly animate?: boolean | undefined; readonly list?: boolean | undefined; readonly outputMode: CliOutputMode; readonly section?: string | undefined; } /** * Result of forwarding the demo command. */ interface DemoResult { readonly exitCode: number; } /** * Runs the demo command through available entrypoints. */ declare function runDemo(options: DemoOptions): Promise; export { runDemo, DemoResult, DemoOptions };