import { ComputedRef, Ref } from 'vue'; import { Props, SearcherByKey } from '../types'; import { Options } from '../../../forms/select/types'; /** * Создание и управление реактивными переменными для выбора ПС * * @param props - входные props компонента * @param mapSearchers - Map ПС (реактивная) */ export declare const useSelectSearcher: (props: Props, mapSearchers: ComputedRef) => { searcherKey: Ref; optionBySearcherKey: ComputedRef; };