import React from "react"; import "./index.less"; declare type PublicComponentType = "personnel" | "department"; interface IProps { value?: string[] | string; type?: PublicComponentType; model?: "single" | "multiple"; max?: number; onChange?: (items: string[] | string) => void; placeholder?: string; } export declare const SearchSelector: React.ForwardRefExoticComponent & React.RefAttributes>; export default SearchSelector;