import { FC } from 'react'; import { GridColumnsCount, ViewportWidthSegment, GridTextAlign, GridVerticalAlign } from './Grid'; /** * A row sub-component for Grid */ export interface GridRowPropsStrict { /** A row can have its columns centered. */ centered?: boolean; /** Adds one or more classnames to an element */ className?: string; /** Represents column count per line in the row */ columns?: GridColumnsCount; /** A row can have dividers between its columns */ divided?: boolean; /** Set the wrapping element's tagname */ el?: any; /** A column can appear only for a specific device or screen sizes */ only?: ViewportWidthSegment; /** A row can specify that its columns should reverse order per device, e.g. reversed="mobile tablet vertically" */ reversed?: string; /** A row can stretch its contents to take up the entire column height */ stretched?: boolean; /** Alignment of content */ textAlign?: GridTextAlign; /** Vertical alignment of content */ verticalAlign?: GridVerticalAlign; } export interface GridRowProps extends GridRowPropsStrict { [propName: string]: any; } export declare const GridRow: FC;