import { FC } from 'react'; import { AnnotatedSection, Section } from './components'; export interface NewLayoutProps { /** 是否有 padding */ sectioned?: boolean; } declare const NewLayout: FC & { AnnotatedSection: typeof AnnotatedSection; Section: typeof Section; }; export default NewLayout;