import * as React from "react"; export interface Props { children: any; className?: string; small?: boolean; variant?: string; } declare const Chip: React.FC; export default Chip;