import * as react from 'react';
import { AlertVariantProps } from '@trail-ui/theme';

interface AlertProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'color'>, AlertVariantProps {
}
declare const _Alert: react.ForwardRefExoticComponent<AlertProps & react.RefAttributes<HTMLDivElement>>;

export { _Alert as Alert, AlertProps };
