/** * Alert components — Alert, AlertTitle, AlertDescription */ import { ContainerComponent, Component } from '../../core/component.js'; import type { ContainerProps, ComponentProps, RxStr } from '../../core/component.js'; export type AlertVariant = 'default' | 'destructive' | 'success' | 'warning'; export interface AlertProps extends ContainerProps { variant?: AlertVariant; icon?: string; } export declare function Alert(props?: AlertProps): ContainerComponent; export declare function AlertTitle(content: RxStr, props?: ComponentProps): Component; export declare function AlertDescription(content: RxStr, props?: ComponentProps): Component; //# sourceMappingURL=index.d.ts.map