import React from "react";
import { Breakpoint } from "../BreakPoints";
import { Align, Space } from "../LayoutTokens";
export interface IRowProps extends React.ComponentPropsWithoutRef<"div"> {
    space?: Space;
    align?: Align;
    collapseBelow?: Breakpoint;
}
export declare const Row: React.ForwardRefExoticComponent<IRowProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=Row.d.ts.map