import React from 'react'; export type AlertVariant = 'error' | 'success' | 'warning' | 'info'; export type AlertProps = { variant?: AlertVariant; title?: string; children: React.ReactNode; className?: string; style?: React.CSSProperties; }; type AlertComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const Alert: AlertComponent; export default Alert; //# sourceMappingURL=index.d.ts.map