import React from 'react';
import { GridProps } from './Grid.types';
/**
 * Responsive layout grid adapts to screen size and orientation, ensuring consistency across layouts
 */
declare const Grid: React.FC<GridProps>;
export default Grid;
