/// import { CallToActionProps } from "../CallToAction"; export interface ContainerProps { callToAction?: CallToActionProps; children: JSX.Element | JSX.Element[]; className?: string; description?: string | JSX.Element; title?: string | JSX.Element; withContainer?: boolean; withTitle?: boolean; } export declare const Container: ({ withContainer, withTitle, description, title, children, className, callToAction, }: ContainerProps) => import("react/jsx-runtime").JSX.Element;