import React from 'react'; type Variant = 'info' | 'warning' | 'success' | 'danger'; export interface AlertProps { variant: Variant; label?: React.ReactNode; dismissable?: boolean; onClose?: () => void; } export declare const Alert: React.FC; export {}; //# sourceMappingURL=Alert.d.ts.map