/// <reference types="react" />
import * as React from "react";
import { IconName } from "../SvgIcon/icons";
import { IntentType } from '../../../Common/theming/types';
export interface UpLogoAlerteProps {
    icon: IconName;
    title?: string;
    alerteNumber?: number;
    intenet: IntentType;
}
export interface UpLogoAlerteState {
}
export default class UpLogoAlerte extends React.Component<UpLogoAlerteProps, UpLogoAlerteState> {
    static defaultProps: UpLogoAlerteProps;
    constructor(p: any, c: any);
    render(): JSX.Element;
}
