import React, { FC } from 'react'; import { Variant } from './types'; declare type Props = { children: React.ReactNode; type: Variant; contentWidth?: boolean; }; export declare const Alert: FC; export default Alert;