import { IconElement } from './icon'; import { MarginProps } from '../style/helpers'; export interface ChipProps extends MarginProps { label: string; imageURL?: string; icon?: IconElement; onIconClick?: () => void; } export declare function Chip({ label, imageURL, icon, onIconClick, ...props }: ChipProps): JSX.Element; //# sourceMappingURL=chip.d.ts.map