import React, { HTMLAttributes } from 'react'; import './GridSection.css'; export interface GridSectionProps extends HTMLAttributes { type: 'aside' | 'body'; } export declare const GridSection: React.ForwardRefExoticComponent>;