import React from 'react';
import { type IContainerProps } from './types';
/**
 * Component for creating main page container with `layout` theme parameters.
 */
declare const Container: React.ForwardRefExoticComponent<Omit<IContainerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export { Container };
