import type * as React from 'react'; import type { QAProps } from "../../types.js"; import type { MediaPartial, Space } from "../types.js"; import "./Row.css"; export interface RowProps extends QAProps { style?: React.CSSProperties; /** * Vertical and horizontal `space` between children `` components. */ space?: Space | MediaPartial; /** * Override default (space) vertical gaps between children if it wrap on next line */ spaceRow?: Space | MediaPartial; className?: string; children?: React.ReactNode; } /** * Defines the margins between columns (``). * * Required to use with `` component * * ```tsx * import {Row, Col} from '@gravity-ui/uikit'; * * * col * col * * ``` * --- * Storybook - https://preview.gravity-ui.com/uikit/?path=/docs/components-layout--docs#row */ export declare const Row: ({ children, style, className, space, spaceRow, qa }: RowProps) => import("react/jsx-runtime").JSX.Element;