import type { CodeBlock } from '../../../domain/CodeBlock.js';
import { Violation } from '../../../domain/Violation.js';
import type { LanguageValidator, ValidationContext } from '../LanguageValidator.js';
/**
 * Validates Python code blocks for `print()` in non-example code, bare
 * `except:` clauses, and functions missing type hints.
 */
export declare class PythonValidator implements LanguageValidator {
    validate(block: CodeBlock, context: ValidationContext): Violation[];
}
//# sourceMappingURL=PythonValidator.d.ts.map