import { HTMLAttributes } from 'react'; import { BaseComponentProps, Variant } from '../../../types'; import './Alert.css'; export interface AlertProps extends BaseComponentProps, Omit, 'className' | 'style'> { variant?: Variant; title?: string; closable?: boolean; onClose?: () => void; } export declare const Alert: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=Alert.d.ts.map