import * as React from "react"; interface IState { showAlert: boolean; } export declare class AlertExample extends React.Component<{}, IState> { state: { showAlert: boolean; }; showAlert: () => void; hideAlert: () => void; onAlertOutsideClick: () => void; onAlertTimeout: () => void; renderAlertContent: () => JSX.Element; render(): JSX.Element; } export {};