UNPKG

@playcanvas/pcui

Version:

User interface component library for the web

13 lines (12 loc) 407 B
import { Element } from '../Element/component'; import { SelectInputArgs } from './index'; /** * An input that allows selecting from a dropdown or entering tags. */ declare class SelectInput extends Element<SelectInputArgs, any> { onSelect?: (value: string) => void; constructor(props: SelectInputArgs); onAttachFn(): void; render(): import("react").JSX.Element; } export { SelectInput };