import type { ISelectRef } from "../../components/select/index.d.mts"; import { Collection } from "../collection/index.d.mts"; import type { TCollectionElement, TCollectionItemDefaultCfg } from "../collection/index.d.mts"; import { CollectionReactItem } from "../collectionReactItem/index.d.mts"; type TCollectionArgs = [string, typeof Select, boolean?]; /** * Класс для рендеринга элемента коллекции селектов статичной верстки */ declare class Select extends CollectionReactItem { #private; constructor(el: TCollectionElement, params?: TCollectionItemDefaultCfg); render(): void; } /** * Плагин для автоматического рендера селектов. Является коллекцией. * @module SelectCollection * @memberof Collection * @example * //
*/ declare class SelectCollection extends Collection