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