import { ReactElement, ReactNode } from 'react'; import { CommonProps } from '../../common'; import { space } from '../../../theme/global/space'; declare type Space = typeof space; declare type Gutter = keyof Space | 'none'; export interface RowProps extends CommonProps { /** * Row's children node. */ children?: ReactNode; /** * Space between columns, format is [horizontal, vertical]. * * Each value can be none or a space value (xxsmall | xsmall | small | medium | large | xlarge | xxlarge | xxxlarge | xxxxlarge), none corresponds to no space. */ gutter?: [Gutter, Gutter]; } declare const Row: ({ gutter, id, className, style, sx, "data-test-id": dataTestId, children, }: RowProps) => ReactElement; export default Row;