import React from 'react';
import { ReactNode, CSSProperties } from 'react';
export type Props = {
    children?: ReactNode;
    className?: string;
    style?: CSSProperties;
    type?: 'helloSites' | 'marryBaby';
};
/**
 * @deprecated Consider to use mantine
 */
declare const Container: ({ children, className, style, type }: Props) => React.JSX.Element;
export { Container };
