import { type IError } from './types'; export declare const initReportFile: (outputPath: string) => void; /** * Display the Health Check results for Text format * @param data * @param outputPipe */ export declare const displayResultText: (data: IError[], outputPipe: (message?: string) => void) => void; /** * Display the Health Check results for JSON format * @param data * @param outputPipe */ export declare const displayResultJSON: (data: IError[], outputPipe: (message: string) => void) => void; /** * Display the Health Check results for JSON format * @param data * @param outputPipe */ export declare const displayResultAzure: (data: IError[], outputPipe: (message: string) => void) => void; export declare const shortTableDisplay: (title: string, data: Record[], outputPipe: (message?: string) => void) => void; /** * Display the details table * @param rootPath * @param data * @param outputPipe */ export declare const displayDetails: (rootPath: string, data: IError[], outputPipe: (message?: string) => void) => void;