import '../SelectComponentsDeprecated/Select.css'; import React from 'react'; import { SelectContainer } from '../SelectComponentsDeprecated/SelectContainer/SelectContainer'; import { CommonSelectProps } from '../SelectComponentsDeprecated/types'; declare type SelectContainerProps = React.ComponentProps; export declare type SimpleSelectProps = CommonSelectProps & Omit & { value?: ITEM | null; onChange?: (v: ITEM | null) => void; }; declare type Select = (props: SimpleSelectProps) => React.ReactElement | null; export declare const BasicSelect: Select; export {};