import React from 'react'; interface Props { numOfCol?: number; lineWidth?: number; lineColor?: string; showEdges?: boolean; showHorizontalLines?: boolean; showVerticalLines?: boolean; unitHorizontalLineGap?: number; unitVerticalLineGap?: number; bgColor?: string; isWidthEqual?: boolean; children: React.ReactNode[]; } declare const Grid: React.FC; export default Grid;