/** * Commit information of an entity (type, isReadonly, id) into the wrapper node as CSS Classes * @param wrapper The entity wrapper element * @param type Entity type * @param isReadonly Whether this is a readonly entity * @param id Optional Id of the entity */ export default function commitEntity(wrapper: HTMLElement, type: string, isReadonly: boolean, id?: string): void;