import React from 'react'; import type { CommonComponentProps, MarginModifierProp, ModifierClassProp } from '../types'; import type { GetRef } from '../utils/refs'; interface RowProps extends CommonComponentProps, MarginModifierProp, ModifierClassProp { children?: React.ReactNode; columnGap?: 'none' | 'tiny' | 'small' | 'default'; getRef?: GetRef; id?: string; } export declare function Row({ _modifierClass, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, children, columnGap, getRef, id, margin, ...rest }: RowProps): React.JSX.Element; export {};