export interface FormElementProps {
  dataTestId?: string;
  children?: React.ReactNode;
  className?: string;
  horizontal?: boolean;
  size?: null | "small" | "medium" | "large";
  style?: React.CSSProperties;
}
