import React from 'react'; import { AlertVariantProps } from './alert.styles'; export interface AlertProps extends AlertVariantProps, Omit, 'color' | 'title'> { icon?: false | React.ReactNode; action?: false | React.ReactNode; title?: React.ReactNode; onClose?: () => void; classNames?: Partial<{ base: string; icon: string; content: string; title: string; action: string; }>; } export declare const Alert: React.ForwardRefExoticComponent>; //# sourceMappingURL=alert.d.ts.map