import React, { CSSProperties, ReactNode } from "react"; type FormRowProps = { small?: boolean; label?: string; labelWidth?: any; labelClassName?: string; labelStyle?: CSSProperties | undefined; htmlFor?: string; className?: string; controlClassName?: string; width?: any; height?: any; maxWidth?: any; maxLabelWidth?: any; style?: CSSProperties | undefined; children?: ReactNode; [x: string]: any; }; export declare const FormRow: ({ small, label, labelWidth, labelClassName, labelStyle, htmlFor, className, controlClassName, width, height, maxWidth, maxLabelWidth, style, children, props, }: FormRowProps) => React.JSX.Element; export {};