import AlertContainer from "./alert-container"; import AlertTitle from "./alert-title"; import AlertContent from "./alert-content"; export declare type AlertComponentType = typeof AlertContainer & { Title: typeof AlertTitle; Content: typeof AlertContent; }; export type { AlertContainerProps } from "./alert-container"; export type { AlertTitleProps } from "./alert-title"; export type { AlertContentProps } from "./alert-content"; declare const _default: AlertComponentType; export default _default;