import { default as React } from 'react'; type Props = { shouldDisplayLandingButton?: boolean; shouldMaskLogo?: boolean; abyssLandingUrl?: string; children: React.ReactNode; }; declare const MainLayout: React.FC; export default MainLayout;