import { createContext } from'react';
/**
* __Message wrapper context__
*
* A message wrapper context allows the children to check
* if it is contained within the MessageWrapper.
*/exportvarMessageWrapperContext = /*#__PURE__*/createContext({
isWrapper: false
});