import type { FlexProps } from "../Flex/Flex"; export declare const NotificationTypes: { readonly danger: "danger"; readonly informative: "informative"; readonly success: "success"; readonly warning: "warning"; }; export type NotificationType = (typeof NotificationTypes)[keyof typeof NotificationTypes]; export type AlertProps = FlexProps & { isCloseable?: boolean; closeAriaLabel?: string; title?: string; type?: NotificationType; onClose?: any; controlled?: boolean; }; declare const _default: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit> & string & Omit<({ children, isCloseable, title, type, closeAriaLabel, onClose, controlled, ...props }: AlertProps) => import("react/jsx-runtime").JSX.Element, keyof import("react").Component>; export default _default;