/// import { ExtendedBoxComponent, ExtendedFlexProps } from '../types'; type Props = { /** * The size of the alert. */ readonly aspectSize?: 's' | 'm'; /** * The status of the alert. Used to colorize the Alert. */ readonly status?: 'error' | 'info' | 'success' | 'warning'; }; type AlertProps = ExtendedFlexProps; type AlertComponent = ExtendedBoxComponent; export { AlertComponent, AlertProps };