/// <reference types="react" />
import { RowProps } from './type';
export interface RowContextState {
    gutter?: [number, number];
    wrap?: RowProps['wrap'];
    supportFlexGap?: boolean;
}
declare const RowContext: import("react").Context<RowContextState>;
export default RowContext;
