import React, { AriaAttributes } from 'react'; import type { CSSProperties, ReactElement } from 'react'; export declare type NativeProps = { className?: string; style?: CSSProperties & Partial>; tabIndex?: number; } & AriaAttributes; export declare function withNativeProps

(props: P, element: ReactElement): React.ReactElement>;