import type { ReactNode } from "react"; import type { AlertStatusType } from "../../types/index"; interface AlertTemplateModel { variant: AlertStatusType; title?: string; description?: string; children?: ReactNode; } export declare const Alert: ({ variant, description, title, children, }: AlertTemplateModel) => import("react/jsx-runtime").JSX.Element | undefined; export {};