import type { FC } from "react"; import type { IComponentBaseProps } from "../../types/index.d.mts"; import type { TOptionType, ISelectRef, ISelect, TSelectValue, TSelectPackageAPI } from "./config/types/index.d.mts"; /** * Компонент выпадающего списка * @returns {ReactElement} */ declare const Select: FC; export type { ISelect, ISelectRef, TOptionType, TSelectPackageAPI, TSelectValue, }; export { Select };