import { DisplayIO, DOCS_URL } from "./display.js"; export { DOCS_URL }; /** * Subcommands handled by the onboarding surface — `start`, `login`, * `audit`, `doctor`, and `setup` route to one-shot interactive flows * that exit before the MCP proxy starts. Anything else falls through * to the proxy in `src/index.ts`. */ export declare const ONBOARDING_COMMANDS: Set; export declare const HELP_FLAGS: Set; export declare const VERSION_FLAGS: Set; export declare function isOnboardingCommand(arg: string | undefined): boolean; export declare function isHelpFlag(arg: string | undefined): boolean; export declare function isVersionFlag(arg: string | undefined): boolean; export declare function runOnboarding(args: string[], display?: DisplayIO): Promise; export declare function printHelp(display?: DisplayIO): void; /** * Prints the connector version and the cloud endpoint it's configured * against. Intentionally offline — `--version` should be instant and * never make network calls. The cloud codec build is reported by * `jdcodec doctor` instead, where the network round-trip is expected. */ export declare function printVersion(cloudUrl: string, display?: DisplayIO): void;