import type { UseListReturn } from './interface'; export * from './interface.d'; /** * 自动计算组件所需要的类名列表和样式列表 * * 类名和样式首先通过传入属性列表数组,使用过滤 hook 进行过滤 * * 过滤后的 prop 对象再进行样式或者类名处理 * * @author Tyh2001 * @param { Object } prop prop 列表 * @param { string } name 组件名 * @returns { Object } 类名列表和样式列表方法,可解构出 classes styles */ export declare const useList: (prop: T, name: string) => UseListReturn;