import React from 'react'; import type { AlertProps } from '../types'; interface AlertState { show: boolean; } export default class Alert extends React.Component { static defaultProps: Partial; static propsList: Array; constructor(props: AlertProps); handleClick(): void; render(): JSX.Element | null; } export {};