import React from 'react';
import type { MentionsProps } from '..';
export interface OnKeyDownPluginProps {
    onKeyDown: Required<MentionsProps>['onKeyDown'];
}
export declare const OnKeyDownPlugin: React.FC<OnKeyDownPluginProps>;
