import React from 'react'; export declare type Alignment = 'left' | 'right'; export interface GridProps extends React.HTMLProps { align?: Alignment; className?: string; fixedColumnWidth?: boolean; tag?: string; } declare const Grid: (props: GridProps) => React.ReactElement; export default Grid;