import React from 'react'; import { ChipProps as MuiChipProps } from '@material-ui/core'; import { ColorType } from '../utils/constants'; declare type BaseProps = Omit; export interface ChipProps extends BaseProps { hide?: boolean; color?: ColorType | string; helperText?: string; label?: string; outlined?: boolean; rounded?: boolean; square?: boolean; } export declare const isCustomColor: (color: string) => boolean; declare const _default: React.NamedExoticComponent; export default _default;