import * as React from 'react'; import { WithStyles } from '../../core/withStyles'; import styles from './Row.styles'; interface RowProps extends WithStyles { /** Additional class name(s) */ className?: string; /** Set to true to display inline */ inline?: boolean; center?: boolean; } export declare const Row: React.SFC; declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;