import * as React from 'react';
import { BaseUIComponentProps } from "../../internals/types.mjs";
/**
* An individual chip that represents a value in a multiselectable input.
* Renders a `
` element.
*
* Documentation: [Base UI Combobox](https://base-ui.com/react/components/combobox)
*/
export declare const ComboboxChip: React.ForwardRefExoticComponent & React.RefAttributes>;
export interface ComboboxChipState {
/**
* Whether the component should ignore user interaction.
*/
disabled: boolean;
}
export interface ComboboxChipProps extends BaseUIComponentProps<'div', ComboboxChipState> {}
export declare namespace ComboboxChip {
type State = ComboboxChipState;
type Props = ComboboxChipProps;
}