export declare const componentSeverity: readonly ["error", "warning", "info", "success"]; export type ComponentSeverity = typeof componentSeverity[number]; export declare const componentSeverityIcon: { error: string; warning: string; info: string; success: string; };