import { LitElement } from 'lit'; import { SxProps } from '../types.js'; /** * A simplified error/warning/info message component. * Wraps tc-callout with appropriate icon and text styling. * * @csspart callout - The underlying callout container * @csspart icon - The icon element * @csspart message - The message text * @attr {string} variant - The message variant (warning | info | error) * @attr {string} message - The message text */ export declare class TcErrorMessage extends LitElement { variant: 'warning' | 'info' | 'error'; message: string; sx: SxProps; static styles: import('lit').CSSResult; private getIconName; private getIconColor; render(): import('lit').TemplateResult<1> | null; } declare global { interface HTMLElementTagNameMap { 'tc-error-message': TcErrorMessage; } } //# sourceMappingURL=tc-error-message.d.ts.map