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;
