/** * detect_secrets Tool * * Detects hardcoded secrets and credentials in source code: * - 38 secret patterns (API keys, passwords, tokens, certificates) * - AWS, GitHub, Stripe, Heroku, SendGrid, and more provider keys * - Database connection strings and passwords * - JWT secrets, private keys, OAuth tokens * * Architecture: shells out to CodeSlick CLI, same pattern as analyze_code. * Runs full scan and filters for credentials/secrets findings. */ export declare const detectSecretsTool: { name: string; description: string; readOnlyHint: boolean; inputSchema: { type: string; properties: { code: { type: string; description: string; }; language: { type: string; enum: string[]; description: string; }; filename: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleDetectSecrets(args: any): Promise<{ content: { type: string; text: string; }[]; }>; //# sourceMappingURL=secrets.d.ts.map