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