import { ReactNode } from 'react';
declare type FormRowProps = {
title?: string;
horizontal?: boolean;
htmlFor?: string;
children: ReactNode;
};
export declare const FormRow: ({ title, children, htmlFor, horizontal, }: FormRowProps) => JSX.Element;
export {};