import React from 'react'; import { DefaultProps } from './types'; export interface ContainerProps extends DefaultProps { alignment?: string; maxWidth?: number | string; } export declare const Container: React.SFC;