import * as React from 'react'; import { StrOrNum } from '../IType'; interface ICommonContext { textareaRef: any; handleTextAreaChange: (value: string) => void; textValue: string; userAdvanceMode?: boolean; tenantId: StrOrNum; userId: StrOrNum; apiPath: string; isShowMentionAllBtn?: boolean; isShowMentionBtn?: boolean; isShowEmojyBtn?: boolean; isShowRewardBtn?: boolean; isShowVisible?: boolean; isShowUploadBtn?: boolean; } export declare const CommonContext: React.Context; export declare const CommonProvider: React.Provider; export {};