/** * `slowcook serve ` — multi-mode dev/mock/staging. * * See `docs/plans/0.20-design-discussions.md` design #5. * * Phase 1 (this cut): `serve dev` is implemented end-to-end. `serve * mock` and `serve staging` parse config + print a "Phase 2/3 stub" * notice; the runtime implementation lands in tasks #20 / #21. * * Backward-compat: `slowcook dev-env ` continues to work as an * alias for `slowcook serve dev ` (wired in cli.ts). */ export interface ServeArgs { profile?: string; verb?: string; branch?: string; story?: string; service?: string; scenario?: string; follow?: boolean; prune?: boolean; repoRoot: string; dryRun?: boolean; } export declare function parseServeArgs(argv: string[]): ServeArgs; export declare function printHelp(): void; export declare function serve(argv: string[]): Promise; //# sourceMappingURL=index.d.ts.map