type ErrorSeverity = 'panic' | 'error'; type ErrorType = 'broken_link' | 'broken_image' | 'markdoc'; export declare const reporter: { pushError(message: string, severity: ErrorSeverity, ...args: any[]): void; panicOnBuild(message: string | Error, ...args: any[]): void; markdocError(message: string, type: ErrorType, ...args: any[]): void; clearErrors(): void; clearMarkdocErrors(): void; sendDevErrors(): void; summary(): void; printErrors(): void; listenStdin(): void; }; export type Reporter = typeof reporter; export {}; //# sourceMappingURL=reporter.d.ts.map