import * as React from "react"; import { ViewProps } from "../View"; export interface ContainerProps extends ViewProps { contain?: "narrow" | "normal" | "wide" | "full"; } /** * Containers are used to handle width and padding for components. */ declare const Container: React.SFC; export default Container;