import React from 'react'; import { IntentType } from '../../../Common/theming/types'; import { IconName } from '../../../Common/theming/icons'; export interface UpLogoAlerteProps { icon: IconName; title?: string; alerteNumber?: number; intent: IntentType; } export default class UpLogoAlerte extends React.Component { static defaultProps: UpLogoAlerteProps; constructor(p: any, c: any); render(): JSX.Element; }