import * as React from "react"; import { FontWeight } from "../../foundations/foundation-types"; import { ViewProps } from "../View"; export interface PillProps extends ViewProps { color?: string; textColor?: string; fontSize?: number; fontWeight?: FontWeight; } /** * The Pill represents a status or label with no interactions, no links, and no hover/focus style. */ declare const Pill: React.SFC; export default Pill;