/** * Predefined icon appearance states * @public */ export declare const IconSeverity: { readonly default: undefined; readonly error: "error"; readonly warning: "warning"; readonly success: "success"; readonly information: "information"; }; export type IconSeverity = (typeof IconSeverity)[keyof typeof IconSeverity];