import { SelectComponentType } from './select.types'; /** * @internal * * The `Select` component is meant to optimize user interaction and experience. * It is a customizable dropdown list that allows users to choose one or more options from a list. * Its primary function is to enhance and simplify data input, minimizing user effort * in navigation while avoiding incorrect entries. * * ### Usage * * ```tsx * import { Select, SelectOption } from '@bloomreach/react-banana-ui'; * import React from 'react'; * * export default function MyCustomSingleSelect() { * return ( * * ); * } * ``` */ declare const _default: SelectComponentType; export default _default;