@base-ui/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
15 lines • 670 B
TypeScript
import * as React from 'react';
import type { BaseUIComponentProps } from "../../internals/types.js";
/**
* A container for the chips in a multiselectable input.
* Renders a `<div>` element.
*
* Documentation: [Base UI Combobox](https://base-ui.com/react/components/combobox)
*/
export declare const ComboboxChips: React.ForwardRefExoticComponent<Omit<ComboboxChipsProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export interface ComboboxChipsState {}
export interface ComboboxChipsProps extends BaseUIComponentProps<'div', ComboboxChipsState> {}
export declare namespace ComboboxChips {
type State = ComboboxChipsState;
type Props = ComboboxChipsProps;
}