import { SelectProps } from '../formio/select'; interface ComponentOption { value: string; label: string; } export type ComponentSelectProps = SelectProps & { options?: ComponentOption[]; }; declare function ComponentSelect(props: Omit): import("react/jsx-runtime").JSX.Element; export default ComponentSelect;