import * as React from "react"; import { ViewProps } from "../View"; export interface PageHeaderProps extends ViewProps { title: string; subtitle?: React.ReactNode; backgroundColor?: string; showMenuButton?: boolean; onMenuButtonClick?: (evt: React.SyntheticEvent) => void; breadcrumbHref?: string; breadcrumbTitle?: string; } /** * A container for the header of a page, it contains the menu open button and then displays the children passed in */ declare const PageHeader: React.SFC; export default PageHeader;