import * as React from "react"; import { BreakpointConfig } from "../../shared/styles/breakpoints"; interface FieldGroupProps { /** * The direction the children are laid out in. Can be set for all viewport sizes, or configured to have different values at different viewport width breakpoints */ direction?: BreakpointConfig<"column" | "row">; children: React.ReactNode; /** * Allows custom styling */ className?: string; } declare const FieldGroup: ({ children, className, direction }: FieldGroupProps) => React.JSX.Element; export default FieldGroup;