import type { Rule } from "../types.js"; interface StructureIssue { line: number; message: string; suggestion: string; } interface StructureReport { hasH1: boolean; hasBlockquote: boolean; hasSection: boolean; malformedLinks: StructureIssue[]; } declare function analyseStructure(content: string): StructureReport; export declare const rule: Rule; export declare const _internal: { analyseStructure: typeof analyseStructure; }; export {};