/** * YAML checker loading and parsing * Compatible with globstar YAML checker format */ import { Analyzer, YamlCheckerDefinition, YamlAnalyzer } from './types.js'; export declare class YamlCheckerError extends Error { constructor(message: string); } /** * Load a YAML checker from a file */ export declare function loadYamlChecker(filePath: string): Promise; /** * Parse a YAML checker from string content */ export declare function parseYamlChecker(content: string): Promise; /** * Compile a YAML checker definition into an executable analyzer */ export declare function compileYamlChecker(definition: YamlCheckerDefinition): Promise; /** * Load all YAML checkers from a directory */ export declare function loadYamlCheckers(dir: string): Promise; /** * Get analyzers from YAML checkers */ export declare function getAnalyzersFromYaml(yamlCheckers: YamlAnalyzer[]): Analyzer[]; //# sourceMappingURL=yaml-checker.d.ts.map