import { ReactNode } from 'react'; export type ContextualContentBoxProps = { title?: string; size?: "big" | "small"; children?: ReactNode; cta?: ReactNode; }; export declare const ContextualContentBox: (props: ContextualContentBoxProps) => import("react/jsx-runtime").JSX.Element;