import * as React from "react"; interface MainProps { className?: string; children?: React.ReactNode; prefixCls?: string; } declare const Main: (props: MainProps) => JSX.Element; export default Main;