UNPKG

@open-formulieren/formio-builder

Version:

An opinionated Formio webform builder for Open Forms

11 lines (10 loc) 364 B
import { SelectProps } from '../formio/select'; interface ComponentOption { value: string; label: string; } export type ComponentSelectProps = SelectProps<ComponentOption, false> & { options?: ComponentOption[]; }; declare function ComponentSelect(props: Omit<ComponentSelectProps, 'valueProperty'>): React.JSX.Element; export default ComponentSelect;