import React from 'react'; /** * Combines multiple fields into one row. Wrapped fields will be displayed one * after one with a proper gap in between. On smaller screens they will keep the * default, column behavior. */ declare const Row: ({ mobile, noBottomGutter, className, children, }: RowProps) => import("react/jsx-runtime").JSX.Element; export interface RowProps { /** * Keeps row layout also for mobile devices */ mobile?: boolean; /** * Disables bottom margin */ noBottomGutter?: boolean; /** * Set additional classes */ className?: string; children: React.ReactNode; } export default Row;