import { PropsWithChildren } from 'react'; interface ContainerProps { className?: string; as?: string; } export declare const Container: ({ as, className, children, }: PropsWithChildren) => import('react').ReactElement<{ className: string; }, string | import('react').JSXElementConstructor>; export {};