/** * GitMem Check Command * * Diagnostic CLI command for health checks and benchmarks. * * Usage: * npx gitmem-mcp check — Quick health check (~5s) * npx gitmem-mcp check --full — Full diagnostic (~30s) * npx gitmem-mcp check --output report.json * * */ /** * Command options */ interface CheckOptions { full: boolean; output?: string; } /** * Parse command line arguments */ export declare function parseArgs(args: string[]): CheckOptions; /** * Main check command */ export declare function runCheck(options: CheckOptions): Promise; /** * Entry point for CLI */ export declare function main(args: string[]): Promise; export {}; //# sourceMappingURL=check.d.ts.map