import * as React from 'react'; import { AnnotatedSection, Section } from './components'; export interface Props { /** Automatically adds sections to layout. */ sectioned?: boolean; /** The content to display inside the layout. */ children?: React.ReactNode; } export default class Layout extends React.Component { static AnnotatedSection: typeof AnnotatedSection; static Section: typeof Section; render(): JSX.Element; }