import * as React from 'react'; import { PropsWithChildren } from 'react'; declare type VerticalAlign = 'start' | 'center' | 'end'; declare type HorizontalAlign = 'start' | 'center' | 'end' | 'around' | 'between'; declare type IProps = { className?: string; noGutters?: boolean; verticalAlign?: VerticalAlign; horizontalAlign?: HorizontalAlign; }; export declare const Row: React.FC & React.HTMLProps>; export {};