import type { UsePropsReturn } from './interface'; export * from './interface.d'; /** * 对于 props 的一些操作 * * 目前支持过滤属性、拦截器 * * @author Tyh2001 * @param { Object } prop 需要操作的 prop 对象 * @returns { Object } 针对 prop 处理的一些方法 */ export declare const useProps: (prop: T) => UsePropsReturn;