import React from 'react'; import type { ReactNode } from 'react'; interface GridProps { children?: ReactNode; className?: string; } interface GridItemProps { children?: ReactNode; className?: string; span?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; start?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; end?: 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13; } /** * Grid - 网格布局 * * @description 基于CSS Grid的12列网格布局容器组件,提供灵活的响应式布局方案 */ declare const Grid: React.ForwardRefExoticComponent>; declare const GridItem: React.ForwardRefExoticComponent>; export { Grid, GridItem }; export type { GridProps, GridItemProps };