import { type FC, type ReactNode } from 'react';
declare const Container: FC<{
    children: ReactNode;
    title?: string;
    type: 'info' | 'warning' | 'success' | 'error';
}>;
export default Container;
