import React__default, { PropsWithChildren } from 'react'; import { PluginsProps } from '../Plugins/index.js'; import { MessageType } from '../../types/models.js'; declare enum PluginsNameEnum { quote = "quote", forward = "forward", copy = "copy", delete = "delete", resend = "resend", revoke = "revoke" } type MessagePluginConfigProps = { [propsName in PluginsNameEnum]?: { isShow?: boolean; relateMessageType?: MessageType[]; }; }; interface MessagePluginsProps extends PluginsProps { config?: MessagePluginConfigProps; } declare function MessagePlugins(props: PropsWithChildren): React__default.ReactElement; export { MessagePluginConfigProps, MessagePlugins, MessagePluginsProps }; //# sourceMappingURL=MessagePlugins.d.ts.map