import { ReactNode } from "react"; import '../../style/gridRow.css'; interface RowProps { children?: ReactNode; className?: string; style?: { [index: string]: string; }; } declare const Row: (props: RowProps) => JSX.Element; export default Row;