import * as React from "react"; export * from "./variants.js"; /** * Alert — an accessible message with role="alert". * Builds on Message; all MessageProps are supported. */ declare const Alert: React.ForwardRefExoticComponent & { title?: string; description?: string; html?: string; } & React.RefAttributes>; /** Optional title row inside an Alert when composing with children. */ declare const AlertTitle: React.ForwardRefExoticComponent & React.RefAttributes>; /** Optional description row inside an Alert when composing with children. */ declare const AlertDescription: React.ForwardRefExoticComponent & React.RefAttributes>; export { Alert, AlertTitle, AlertDescription }; //# sourceMappingURL=index.d.ts.map