import { BoxProps, HeaderSectionProps } from '@20minutes/hela'; import { RawDraftContentState } from 'draft-js'; import { default as React } from 'react'; import { LiveIndicatorProps } from '../../../molecules'; export interface HeaderSectionStyleProps extends Omit { subtitle?: string | RawDraftContentState; } export interface SectionProps extends BoxProps { header: HeaderSectionStyleProps; sectionId?: string; liveIndicator?: Omit; } export declare const Section: React.FC;