import type { ComponentProps } from "react"; import { AlertContent, AlertDescription, AlertIndicator, AlertRoot, AlertTitle } from "./alert"; export declare const Alert: (({ children, className, status, ...rest }: import("./alert").AlertRootProps & Omit>) => import("react/jsx-runtime").JSX.Element) & { Root: ({ children, className, status, ...rest }: import("./alert").AlertRootProps & Omit>) => import("react/jsx-runtime").JSX.Element; Indicator: ({ children, className, ...rest }: import("./alert").AlertIndicatorProps & Omit>) => import("react/jsx-runtime").JSX.Element; Content: ({ children, className, ...rest }: import("./alert").AlertContentProps & Omit>) => import("react/jsx-runtime").JSX.Element; Title: ({ children, className, ...rest }: import("./alert").AlertTitleProps & Omit>) => import("react/jsx-runtime").JSX.Element; Description: ({ children, className, ...rest }: import("./alert").AlertDescriptionProps & Omit>) => import("react/jsx-runtime").JSX.Element; }; export type Alert = { Props: ComponentProps; RootProps: ComponentProps; IndicatorProps: ComponentProps; ContentProps: ComponentProps; TitleProps: ComponentProps; DescriptionProps: ComponentProps; }; export { AlertRoot, AlertIndicator, AlertContent, AlertTitle, AlertDescription }; export type { AlertRootProps, AlertRootProps as AlertProps, AlertIndicatorProps, AlertContentProps, AlertTitleProps, AlertDescriptionProps, } from "./alert"; export { alertVariants } from "@heroui/styles"; export type { AlertVariants } from "@heroui/styles";