export interface AlertProps { /** Alert status. This affects the color scheme and icon used. */ status: "error" | "success" | "warning" | "info"; children: React.ReactNode; } /** * Alerts are visual representations used to communicate a state that affects the page or the interactive element. */ export declare const Alert: React.FC;