import * as _angular_core from '@angular/core'; import { PortalContent } from '@lucca-front/ng/core'; type InlineMessageState = 'success' | 'warning' | 'error' | 'default'; declare class InlineMessageComponent { #private; /** * The title of the inline message */ readonly label: _angular_core.InputSignal; /** * Inline message state */ readonly state: _angular_core.InputSignal; /** * Which size should the inline message be? Default, medium or small */ readonly size: _angular_core.InputSignal<"S" | "M">; /** * Defines whether a tooltip is used in the inline message component */ readonly withTooltip: _angular_core.InputSignalWithTransform; constructor(); isStringPortalContent(message: PortalContent): message is string; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } export { InlineMessageComponent }; export type { InlineMessageState };