import { SelectProps } from './utils/SelectTypes';
/**
* The `Select` component allows the user to select one or more options from a list
* of `SelectOption`. If no `value` is passed via options, the `children` string is
* assigned as the value.
*
* @example
*
* @example
*
* @see https://design.avayacloud.com/components/web/select-web
* @see https://neo-react-library-storybook.netlify.app/?path=/story/components-select
*/
export declare const Select: {
(props: SelectProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};