import React from 'react'; import { ResponsiveValue } from '../../types'; export type RowProps = { children: React.ReactNode; gutter?: ResponsiveValue; rowGap?: ResponsiveValue; }; declare const Row: ({ children, gutter, rowGap, ...rest }: RowProps) => React.JSX.Element; export default Row;