import { SelectFieldComponentType } from './select-field.types'; /** * The `SelectField` 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 { SelectField, SelectOption } from '@bloomreach/react-banana-ui'; * import React from 'react'; * * export default function MyCustomSingleSelectField() { * return ( * console.log(value)} * > * Apple * Banana * Orange * Grapes * Strawberries * Blueberries * Pineapple * * ); * } * ``` */ declare const _default: SelectFieldComponentType; export default _default;