import * as React from "react"; export interface Props { notifications: any[]; removeFromQueue?: (evt: React.SyntheticEvent) => void; } declare class Notifications extends React.Component { static defaultProps: { notifications: any[]; }; constructor(props: any); handleRemove: (notification: any) => () => void; private pauseCountdown; private resumeCountdown; render(): JSX.Element; } export default Notifications;