import React from 'react';
import { ColProps } from '../Col/Column';
import * as S from './Row.styles';
export declare type RowProps = {
    children?: React.ReactElement<ColProps>[] | React.ReactElement<ColProps> | string;
} & S.Variants;
declare const Row: ({ children, css, align, debug }: RowProps) => JSX.Element;
export default Row;
