import { ReactNode, SyntheticEvent } from 'react'; import ButtonProps from '../Button/type'; type AlertProps = { variant?: 'warning' | 'error' | 'success'; size?: 'small' | 'medium' | 'large'; title?: string; children?: ReactNode; buttonProps?: ButtonProps; onClose?: (a: SyntheticEvent) => unknown; }; export default AlertProps; //# sourceMappingURL=type.d.ts.map