/// import * as uui from '@epam/uui'; import { EpamPrimaryColor } from '../types'; interface AlertMods { /** * Defines component color. * @default 'blue' */ color?: EpamPrimaryColor | uui.AlertProps['color']; } /** Represents the properties of an Alert component. */ export interface AlertProps extends uui.AlertCoreProps, AlertMods { } export declare const Alert: (props: AlertProps & import("react").RefAttributes) => import("react").ReactElement>; export {}; //# sourceMappingURL=Alert.d.ts.map