import * as React from "react"; import { ViewProps } from "../View"; export interface OverviewHeroProps extends ViewProps { title: string | React.ReactNode; subtitle?: React.ReactNode; backgroundImage?: string; breadcrumb?: React.ReactNode; contentWidth?: "narrow" | "normal" | "wide" | "full"; author?: React.ReactNode; duration?: number; ctaCard?: React.ReactNode; childrenWrapper?: boolean; childrenWrapperCss?: any; } /** * An overview container for a hero page */ declare const OverviewHero: React.SFC; export default OverviewHero;