/** * 获取对象深路径下的值 * @category Object * @param data 目标对象 * @param prop 属性路径 */ export declare const getDeepProp: (data: any, prop: string) => any;