import type { CSSProperties, ReactElement } from 'react';
import * as React from 'react';
export type NativeProps<S extends string = never> = {
    /**
     * 自定义类名
     */
    className?: string;
    /**
     * 自定义内联样式
     */
    style?: CSSProperties & Partial<Record<S, string>>;
    /**
     * @ignore
     */
    tabIndex?: number;
} & React.AriaAttributes;
export declare function withNativeProps<P extends NativeProps>(props: P, element: ReactElement): ReactElement<any, string | React.JSXElementConstructor<any>>;
