import * as react from 'react'; import { HTMLAttributes } from 'react'; interface ContainerProps extends HTMLAttributes { as?: 'div' | 'section' | 'article' | 'main' | 'header' | 'footer'; } declare const Container: react.ForwardRefExoticComponent>; export { Container, type ContainerProps };