/**
* File Name: Chip
*/
/** @jsx jsx */
import React from 'react';
import { ICoreBase } from '../../core';
export interface Ichip extends ICoreBase {
    text?: string;
    hiddenText?: string;
    color?: Color;
    rounded?: boolean;
    other?: any;
    icon?: React.ReactNode;
    inverted?: boolean;
    size?: string;
}
declare type Color = "primary" | "secondary" | "success" | "warning" | "danger" | "info" | "light" | "dark";
export declare const Chip: React.ForwardRefExoticComponent<Ichip & React.RefAttributes<HTMLDivElement>>;
export {};
