import React from "react"; export declare type CaAlertProps = { intent?: "success" | "info" | "warning" | "error"; message?: string; children?: React.ReactNode; actions?: React.ReactNode; closable?: boolean; onClose?: () => void; className?: string; }; declare function CaAlert({ intent, children, message, actions, closable, onClose, className, }: CaAlertProps): JSX.Element | null; declare namespace CaAlert { var defaultProps: { intent: string; closable: boolean; actions: null; onClose: () => void; message: string; children: string; }; } export default CaAlert;