import { type Context } from 'react';
/**
 * __Message wrapper context__
 *
 * A message wrapper context allows the children to check
 * if it is contained within the MessageWrapper.
 */
export declare const MessageWrapperContext: Context<{
    isWrapper: boolean;
}>;
