import type { DaVinciField } from './davinci.types.js'; import type { CollectorValueTypes } from './client.types.js'; import type { Collectors } from './node.types.js'; /** * @const nextCollectorValues - Action for setting the next collector values * @see https://redux-toolkit.js.org/api/createAction * * This is for internal "collector" setup for handling the state of the current node */ export declare const nextCollectorValues: import("@reduxjs/toolkit").ActionCreatorWithPayload<{ fields: DaVinciField[]; formData: { value: Record; }; }, string>; export declare const updateCollectorValues: import("@reduxjs/toolkit").ActionCreatorWithPayload<{ id: string; value: CollectorValueTypes; index?: number; }, string>; export declare const pollCollectorValues: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"node/poll">; /** * @const nodeCollectorReducer - Reducer for handling the collector values * @see https://redux-toolkit.js.org/api/createReducer */ export declare const nodeCollectorReducer: import("@reduxjs/toolkit").Reducer & { getInitialState: () => Collectors[]; }; //# sourceMappingURL=node.reducer.d.ts.map