import { PACKAGE_VERSION } from "./version.js"; export { PACKAGE_VERSION }; export declare function runValidate(patterns: string[]): Promise; /** * Dispatch argv. Returns: * - { handled: false } if no subcommand matched (caller should run MCP server) * - { handled: true, exitCode: N } if a subcommand ran (caller should exit N) */ export declare function dispatchCli(argv: string[]): Promise<{ handled: boolean; exitCode?: number; }>;