/// import { HTMLAttributes, ElementType, Component } from "react"; import CommonProps from '../util'; export interface ResponsiveGridProps extends HTMLAttributes, CommonProps { rows?: number | string; columns?: number | string; gap?: number | Array; device?: 'phone' | 'tablet' | 'desktop'; component?: ElementType; } export interface CellProps extends HTMLAttributes, CommonProps { component?: ElementType; rowSpan?: number; colSpan?: number | { desktop?: number; tablet?: number; phone?: number; }; } export class Cell extends Component {} export default class ResponsiveGrid extends Component { static Cell: typeof Cell; }