import * as React from 'react'; import { CirrusFlexProps } from '../Core'; export declare type AnnotatedLayoutProps = { /** H4 title of AnnotatedLayout */ title: string; /** Small Text description of AnnotatedLayout */ description: string; /** Extra components to render below description */ renderExtras?: React.ReactNode; /** Body of AnnotatedLayout, to display to the right */ children: React.ReactNode; } & CirrusFlexProps & React.HTMLAttributes; export declare const AnnotatedLayout: React.FunctionComponent;