import { FC, ReactNode, ReactNodeArray } from "react";
import Col from "./Col";
import { ECol } from "./enum";
import "./index.scss";
interface IProps {
children: ReactNodeArray | ReactNode;
className?: string;
}
declare const Row: FC<IProps>;
export { Row, Col, ECol };