import { HTMLAttributes } from 'react';
import * as React from 'react';
import { HighlightPart } from '../../types/completion';
type OnLabelClick = (name: string, value: string | undefined, event: React.MouseEvent) => void;
interface Props extends Omit, 'onClick'> {
name: string;
active?: boolean;
loading?: boolean;
searchTerm?: string;
value?: string;
facets?: number;
title?: string;
highlightParts?: HighlightPart[];
onClick?: OnLabelClick;
}
/**
* @internal
*/
export declare const Label: React.ForwardRefExoticComponent>;
export {};