import React, { FC } from "react"; type RowSectionProps = { content?: React.ReactNode; colSpan?: number; }; declare const RowSection: FC; export default RowSection;