import React from "react";
export interface FormRowProps {
    caption?: string | React.ReactElement;
    captionWidth?: number;
    children?: React.ReactNode;
}
export declare function FormRow({ caption, captionWidth, children }: FormRowProps): import("react/jsx-runtime").JSX.Element;
