import type { Params, BaseItem } from '../type'; import type { Option } from '../../filter/type'; declare const useServices: () => { brandListRequest: (params: Params) => Promise>; brandSearchRequest: (keyword: string) => Promise; }; export default useServices;