import React from 'react'; import { Select } from '@cloudflare/component-select'; import { BaseProps } from './Base'; import { SelectOption } from './types'; export declare type SelectProps = Omit, ValueType>, 'onChange' | 'value' | 'options'> & { onChange?: (option: SelectOption) => void; value?: ValueType; options: SelectOption[]; }; export default function FormSelect(props: SelectProps): JSX.Element;