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