///
import { CSSProperties } from "react";
export interface FormElementProps {
autofocus?: boolean;
className?: string;
style?: CSSProperties;
disabled?: boolean;
form?: string;
name?: string;
readonly?: boolean;
required?: boolean;
tabindex?: number;
title?: string;
}
export declare function removeProps(props: T, ...names: K[]): any;
export declare type StyleComponent = React.ComponentClass> | React.StatelessComponent>;