import AlertRoot from './alert'; import AlertDescription from './description'; import AlertTitle from './title'; declare const Alert: typeof AlertRoot & { Description: typeof AlertDescription; Title: typeof AlertTitle; }; export default Alert; export type { AlertProps, AlertVariant } from './alert'; export type { AlertDescriptionProps } from './description'; export type { AlertTitleProps } from './title';