import React from 'react';
import { InternalProps } from '../common/Base';
export interface ContainerProps extends InternalProps {
}
declare function Container(props: ContainerProps): (React.ReactElement<any, string | React.JSXElementConstructor<any>> | null)[];
declare namespace Container {
    var displayName: string;
}
export default Container;
