import React, { HtmlHTMLAttributes } from 'react'; export declare enum Orientation { Vertical = "vertical", Horizontal = "horizontal" } interface FormGroupProps { orientation: Orientation; } export declare const UiFormGroup: React.FC>; export {};