import { LitElement } from 'lit'; import { SxProps } from '../types.js'; /** * A callout/alert component for messages and notices. * Uses design-tokens notice classes (.notice, .notice-info, .notice-success, etc.) * * @slot - Callout content * @slot icon - Optional icon slot * @csspart callout - The callout container * @csspart icon - The icon container * @csspart content - The content container * @attr {string} variant - The callout variant (info | success | warning | error) */ export declare class TcCallout extends LitElement { variant: 'info' | 'success' | 'warning' | 'error'; sx: SxProps; static styles: import('lit').CSSResult[]; render(): import('lit').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'tc-callout': TcCallout; } } //# sourceMappingURL=tc-callout.d.ts.map