@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
12 lines (11 loc) • 735 B
TypeScript
import React from 'react';
import type { IPillSelectorUnControlled } from './types/pillSelector';
declare const PillSelectorUnControlledComponent: <V extends string | unknown>({ defaultSelected, multiSelect, ...props }: IPillSelectorUnControlled<V>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element;
declare const PillSelectorUnControlled: <V extends string | unknown>(props: React.PropsWithChildren<IPillSelectorUnControlled<V>> & {
ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => ReturnType<typeof PillSelectorUnControlledComponent>;
/**
* @deprecated Try the new PillSelectorV2 component
*/
export { PillSelectorUnControlled };
export { PillSelectorUnControlled as PillSelector };