import type { IncidentUpdate, StatusPageIncident } from '../rest/incidents.js'; import { type OutputFormat } from './render.js'; export declare function formatIncidentSeverity(severity: string, format: OutputFormat): string; export declare function formatIncidentStatus(status: string, format: OutputFormat): string; export declare function formatIncidentsList(incidents: StatusPageIncident[], format: OutputFormat): string; export declare function formatIncidentDetail(incident: StatusPageIncident, format: OutputFormat): string; export declare function formatIncidentUpdateDetail(incidentId: string, update: IncidentUpdate, format: OutputFormat, title?: string): string;