import React from 'react';
export type RowProps = {
    /**
     * @default 'start'
     */
    align?: 'start' | 'end' | 'center';
    children?: React.ReactNode;
};
/**
 * Groups a number of columns and can align them.
 * @deprecated
 */
export declare const Row: React.FC<RowProps>;
