import { FormGroupProps } from "../form-group"; import { AnyObject } from "@data-driven-forms/react-form-renderer"; import { ReactNode } from "react"; export interface SelectOption extends AnyObject { value?: any; label: ReactNode; } interface InternalSelectProps { options: SelectOption[]; isSearchable?: boolean; isMulti?: boolean; placeholder?: ReactNode; isClearable?: boolean; } export type SelectProps = InternalSelectProps & FormGroupProps; declare const Select: React.ComponentType; export default Select;