import { type FC, type ReactNode } from 'react'; import './index.less'; declare const Container: FC<{ type: string; title?: string; children: ReactNode; }>; export default Container;