import { View } from 'react-native'; import type { ZestUIComponentProps } from '../../types'; /** * A container for the chips of a `multiple` combobox, and usually for the input * beside them. * Renders a ``. * * ```tsx * * * {(items) => items.map((item) => ( * * {item.label} * * * ))} * * * * ``` */ export declare function ComboboxChips(componentProps: ComboboxChips.Props): import("react").JSX.Element; export interface ComboboxChipsState { /** * Whether nothing is selected, so there are no chips to render. */ empty: boolean; } export interface ComboboxChipsProps extends ZestUIComponentProps { } export declare namespace ComboboxChips { type State = ComboboxChipsState; type Props = ComboboxChipsProps; } //# sourceMappingURL=ComboboxChips.d.ts.map