import * as React from 'react';
import { BaseUIComponentProps } from "../../utils/types.js";
/**
* A container for the chips in a multiselectable input.
* Renders a `
` element.
*/
export declare const ComboboxChips: React.ForwardRefExoticComponent>;
export interface ComboboxChipsState {}
export interface ComboboxChipsProps extends BaseUIComponentProps<'div', ComboboxChips.State> {}
export declare namespace ComboboxChips {
type State = ComboboxChipsState;
type Props = ComboboxChipsProps;
}