import * as React from 'react'; import { BaseUIComponentProps } from "../../utils/types.js"; /** * An individual chip that represents a value in a multiselectable input. * Renders a `
` element. */ export declare const ComboboxChip: React.ForwardRefExoticComponent>; export interface ComboboxChipState { /** * Whether the component should ignore user interaction. */ disabled: boolean; } export interface ComboboxChipProps extends BaseUIComponentProps<'div', ComboboxChip.State> {} export declare namespace ComboboxChip { type State = ComboboxChipState; type Props = ComboboxChipProps; }