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

(props: P, element: ReactElement): any; export declare function toCSSLength(val: string | number): string; export declare const useIsomorphicUpdateLayoutEffect: typeof import("react").useEffect | typeof import("react").useLayoutEffect; export declare function mergeProps(a: A, b: B): B & A; export declare function mergeProps(a: A, b: B, c: C): C & B & A;