export declare const INLINE_MESSAGE_VARIANTS: readonly ["info", "warning", "success", "error"]; export declare const INLINE_MESSAGE_SIZES: readonly ["small", "medium"]; export type InlineMessageVariant = (typeof INLINE_MESSAGE_VARIANTS)[number]; export type InlineMessageSize = (typeof INLINE_MESSAGE_SIZES)[number]; /** Default per-variant icon name resolved by `mud-icon` when `iconName` is unset. */ export declare const INLINE_MESSAGE_DEFAULT_ICONS: Record;