import React from 'react';
import { I_PoptartConfig, I_AlertProps } from './types';
interface Props {
    config: I_PoptartConfig;
    currentAlert: I_AlertProps | null;
    dismissAlert: () => void;
}
export default function AlertContainer(props: Props): React.JSX.Element;
export {};
