import type { SemanticBlock } from './types.js'; /** * Classify a sanitized markdown string into semantic blocks. * * The classifier attempts to match the ENTIRE response to a single semantic * type first (e.g., the whole response is a comparison). If no full-response * match is found, it falls back to a default block. * * A verdict detector also runs and can capture a trailing section separately, * resulting in [main content block, verdict block] when applicable. */ export declare function classify(markdown: string): SemanticBlock[]; //# sourceMappingURL=classifier.d.ts.map