import React from 'react'; export interface MyAlertProps { message: string; name?: string; style?: any; visible: boolean; description?: string; } declare const MyAlert: React.FC; export default MyAlert;