import * as React from 'react'; declare const AlertTypes: ["success", "info", "warning", "error"]; export type AlertType = typeof AlertTypes[number]; export interface AlertProps { type?: AlertType; message?: string; description?: string; width?: string; className?: string; closable?: boolean; } interface CompoundedComponent extends React.ForwardRefExoticComponent> { } declare const NeoAlert: CompoundedComponent; export default NeoAlert;