import * as React from "react"; import { ViewProps } from "../View"; export interface ContentTypeProps extends ViewProps { type?: string; text?: string; background?: string; } /** * A generic component to display content type, such as course or event. */ declare const ContentType: React.SFC; export default ContentType;