import React from 'react';
import { IKeyboardProps } from './KeyboardExtProps';
/**
 * @deprecated - Exported types should already have the keyboarding properties on them
 */
export declare const supportKeyboard: <P extends Record<string, any>>(WrappedComponent: React.ComponentType<P>) => React.ForwardRefExoticComponent<React.PropsWithoutRef<P & IKeyboardProps & {
    children?: React.ReactNode;
}> & React.RefAttributes<any>>;
