import * as React from "react"; import { ViewProps } from "../View"; export interface PageBodyProps extends ViewProps { backgroundColor?: string; } /** * A container for the main content of a page with a background pulled in either via specifying the background color or defaulting to the colors.background value */ declare const PageBody: React.SFC; export default PageBody;