import * as React from 'react';
declare class Grid extends React.PureComponent<any> {
    static defaultProps: {
        maxWidth: number;
        margin: string;
        gutter: number;
        grid: number;
    };
    getGuideProps: () => Object;
    getContainerProps: () => Object;
    getRowProps: () => Object;
    renderGuides: () => any[];
    render(): JSX.Element;
}
export default Grid;
