import React from 'react'; export type AlertVariant = 'default' | 'success' | 'warning' | 'error'; export interface AlertProps extends React.HTMLAttributes { /** * The alert variant */ variant?: AlertVariant; /** * The alert title */ title?: string; /** * The alert description */ description?: string; /** * Optional action or close button */ action?: React.ReactNode; /** * The alert content */ children?: React.ReactNode; } /** * Alert component for important messages * * @example * ```tsx * * This is a warning message * * * ``` */ export declare const Alert: React.ForwardRefExoticComponent>; //# sourceMappingURL=Alert.d.ts.map