import type { ReactElement } from "react"; import React from "react"; interface InputGroupProps { readonly children: ReactElement | ReactElement[]; /** * Determine the direction the fields are laid out in. * @default "vertical" */ readonly flowDirection?: "horizontal" | "vertical"; } export declare function InputGroup({ children, flowDirection, }: InputGroupProps): React.JSX.Element; export {};