export interface ConnectReduxDevToolsOptions { /** * If it should show the arguments near the action name. * * @default true */ logArgsNearName?: boolean; /** * If it should log child actions when they run inside another action tracked * by the same target tree. * * @default true */ logChildActions?: boolean; } /** * Connects a tree node to a redux dev tools instance. * * @param remotedevPackage The remotedev package (usually the result of `require("remoteDev")`) (https://www.npmjs.com/package/remotedev). * @param remotedevConnection The result of a connect method from the remotedev package (usually the result of `remoteDev.connectViaExtension(...)`). * @param target Object to use as root. * @param [options] Optional options object. */ export declare function connectReduxDevTools(remotedevPackage: any, remotedevConnection: any, target: object, options?: ConnectReduxDevToolsOptions): void;