UNPKG

@itwin/itwinui-react

Version:

A react component library for iTwinUI

9 lines (8 loc) 365 B
import * as React from 'react'; import { Input } from '../Input/Input.js'; import type { PolymorphicForwardRefComponent } from '../../utils/index.js'; type ComboBoxInputProps = { selectTags?: React.JSX.Element[]; } & React.ComponentProps<typeof Input>; export declare const ComboBoxInput: PolymorphicForwardRefComponent<"input", ComboBoxInputProps>; export {};