/** * Select * * A wrapper around react-select */ import { ElementProps, InputProps, Group } from '../../core/types'; import './Select.scss'; export type SelectProps = ElementProps & InputProps & { options?: (string | Group)[]; }; export default function Select(props: SelectProps): import("react/jsx-runtime").JSX.Element;