import type { Phase } from '../types.js'; /** * Collects user choices that downstream phases (`deps`, `scaffold`) need * to see *before* they plan their work. Runs immediately after preflight * so that, e.g., `deps` can skip optional packages tied to an example the * user declined. * * Currently asks: * - `adminPath`: the single URL segment used by route files and runtime config * - `signInPath`: the URL path used by the public sign-in route * - `examples`: include the example collections/blocks/fields overlay * - `importDocs`: include the markdown → Byline import example script * (`byline/scripts/import-docs.ts` plus `scripts/lib/*`) and its * devDependency stack (gray-matter, unified, remark-*, @types/mdast). * Only asked when `examples` is yes; defaults to no — the production * app never imports these and most users won't need them. */ export declare const promptsPhase: Phase; //# sourceMappingURL=prompts.d.ts.map