import '../SelectComponents/Select.css'; import React from 'react'; import { SelectContainer } from '../SelectComponents/SelectContainer/SelectContainer'; import { CommonSelectProps } from '../SelectComponents/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 {};