UNPKG

@open-formulieren/formio-builder

Version:

An opinionated Formio webform builder for Open Forms

11 lines (10 loc) 386 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'>): import("react/jsx-runtime").JSX.Element; export default ComponentSelect;