import { FC, HTMLAttributes } from "react";
declare const Row: FC<HTMLAttributes<HTMLDivElement> & {
    $center?: boolean;
    $right?: boolean;
    $fill?: boolean;
    $nowrap?: boolean;
}>;
export default Row;
