import React from 'react';
export interface Props {
    leftIcon?: React.ReactElement;
    rightIcon?: React.ReactElement;
    label?: string;
    disabled?: boolean;
    iconColor?: string;
}
export declare const Chips: ({ leftIcon, rightIcon, label, disabled, iconColor, ...props }: Props) => JSX.Element;
