import type { PatchPropsFunctionType } from '@lingxiteam/types'; /** * 是否包含某属性,或的关系。 包含`propertyNames`中的一个值即可 * @param target * @param propertyNames */ export declare const hasSomeOwnProperty: (target: Object, propertyNames: string[]) => boolean; /** * 组件渲染时候的预处理逻辑-组件每次渲染都会处理 */ /** * 组件渲染前预处理逻辑 * 配置规则 - 同个组件存在多个配置项都会处理 * '*' 全部组件预处理 * 'Button' 单个组件预处理 * 'Button|Input' 多个组件预处理 */ declare const pc: { [key: string]: PatchPropsFunctionType; }; export default pc;