import type { Attributes, State, StateHandler } from '../../types';
type NewEntityData = Attributes | {
    [key: string]: any;
};
declare const updateAtomicData: (state: State, stateHandler: StateHandler, entityKey: string, newData: NewEntityData) => void;
export default updateAtomicData;
