// Types
import type { RawDraftContentState } from 'draft-js';

const emptyRawContentState: RawDraftContentState = {
  entityMap: {},
  blocks: [
    {
      text: '',
      key: 'LG6AABOZOBAMJ',
      type: 'unstyled',
      entityRanges: [],
      depth: 0,
      inlineStyleRanges: [],
    },
  ],
};

export default emptyRawContentState;
