/// <reference types="react" />
import { BREAKPOINT_WIDTHS } from '../../util/breakpoint';
export interface IRowContextState {
    gutter: number;
    breakpoint: keyof typeof BREAKPOINT_WIDTHS;
}
declare const RowContext: import("react").Context<IRowContextState>;
export default RowContext;
