import { ParamsProxyEngineInterface } from '../../interfaces/engine/proxy/params.proxy.engine.interface'; type proxyRecursiveGetType = (targetGet: any, nameGet: string) => ReturnType; export declare function proxyRecursiveGet(params: ParamsProxyEngineInterface): proxyRecursiveGetType; /** * * @param target object for next proxy * @param name of current part of command is.object.not.empty() ['is', 'object', 'not', 'empty'] * @param params ParamsProxyEngineInterface */ export declare function proxyRecursive(target: object | string, name: string, params: ParamsProxyEngineInterface): object; export {};