export default AlertContainer;
/**
 * @deprecated - Components in the legacy folder (/src/legacy) are deprecated. Please use a component from the components folder (/src/components) instead. Legacy components may not follow accessibility standards.
 **/
declare class AlertContainer extends React.Component<any, any, any> {
    constructor(props: any);
    constructor(props: any, context: any);
    render(): JSX.Element;
}
declare namespace AlertContainer {
    namespace defaultProps {
        let children: any;
        let className: string;
        let position: string;
    }
    namespace propTypes {
        export let ariaLabel: PropTypes.Validator<string>;
        let children_1: PropTypes.Requireable<PropTypes.ReactNodeLike>;
        export { children_1 as children };
        let className_1: PropTypes.Requireable<string>;
        export { className_1 as className };
        let position_1: PropTypes.Requireable<string>;
        export { position_1 as position };
    }
    let displayName: string;
}
import React from 'react';
import PropTypes from 'prop-types';
