/** * 通过表达式获取属性值 * @param target 对象或数组 * @param exp 属性取值表达式 * @returns */ export declare function parserProperty(target: { [key: string]: unknown; }, exp: string): unknown;