/** * Publish CLI — thin driver over the `publish` bundled photon. * * The actual wizard lives in `src/photons/publish.photon.ts`. This file: * 1. imports that photon's default class * 2. drives its async generator * 3. translates `ask:*` yields into readline prompts * 4. prints `emit:*` yields to stderr * * Same pattern Beam/MCP use — the wizard definition is source-of-truth. */ import type { Command } from 'commander'; export declare function registerPublishCommand(program: Command): void; //# sourceMappingURL=publish.d.ts.map