import { BaseRule, FileContent, SecurityIssue } from '../types';
export declare class InsecureErrorHandlingRule extends BaseRule {
    readonly name = "insecure-error-handling";
    readonly description = "Detects information disclosure in error handling and stack traces";
    readonly severity: "medium";
    private readonly errorPatterns;
    private readonly safeErrorPatterns;
    check(fileContent: FileContent): SecurityIssue[];
    private hasSafeErrorPatterns;
    private isCommentOrTest;
    private isDevelopmentContext;
}
//# sourceMappingURL=insecure-error-handling.d.ts.map