/** * External dependencies */ import type { Reducer } from 'redux'; import type { BlockActionTypes, BlocksState } from '../types'; /** * Reducer returning an array of registered blocks. * * @param {Object} state Current state. * @param {Object} action Dispatched action. * * @return {Object} Updated state. */ declare const BlocksReducer: Reducer; export declare type State = ReturnType; export default BlocksReducer; //# sourceMappingURL=reducer.d.ts.map