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; } declare const FieldGroup: ({ children, direction }: FieldGroupProps) => JSX.Element; export default FieldGroup;