import React from 'react';
import type { MentionsProps } from '..';
export interface ShiftEnterKeyPluginProps {
    onPressEnter: Required<MentionsProps>['onPressEnter'];
}
export declare const ShiftEnterKeyPlugin: React.FC<ShiftEnterKeyPluginProps>;
