import { HTMLAttributes } from 'react';
export type RowhProps = {
reverse?: boolean;
alignItems?: string;
} & HTMLAttributes;
export declare const Row: ({ alignItems, reverse, children, ...props }: RowhProps) => import("react/jsx-runtime").JSX.Element;
export default Row;