import { IOptionsAttr } from '../typings/interface/comp.interface'; /** * 对原始选项集进行筛选 * @param validOptions 有效的选项集 * @param originOptions 原始的选项集 * @returns 当前有效的选项集 */ declare const useOptionsComputed: (validOptions: string[] | undefined, originOptions: Array) => { optionsComputed: IOptionsAttr[]; }; export default useOptionsComputed;