import React from 'react'; export declare type FlexAlignmentValues = 'stretch' | 'center' | 'flex-start' | 'flex-end' | 'baseline' | 'initial' | 'inherit'; export declare type FlexJustificationValues = 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'initial' | 'inherit'; export declare type FlexDirectionValues = 'row' | 'row-reverse' | 'column' | 'column-reverse' | 'initial' | 'inherit'; export interface FlexRowProps { align?: FlexAlignmentValues; cols?: number; gutter?: number; justify?: FlexJustificationValues; direction?: FlexDirectionValues; } export interface FlexRow extends React.HTMLAttributes, FlexRowProps { } declare const FlexRow: React.FunctionComponent; export default FlexRow;