import React, { HTMLAttributes } from 'react';
declare const RowAligns: ["top", "middle", "bottom"];
declare const RowJustify: ["start", "end", "center", "space-around", "space-between"];
interface RowProps extends HTMLAttributes {
align?: typeof RowAligns[number];
justify?: typeof RowJustify[number];
prefixCls?: string;
wrap?: boolean;
}
declare const KRow: React.ForwardRefExoticComponent>;
export { RowProps, KRow as default };