import React from "react"; import type { ReactNode } from "react"; import type { ContentBoxType } from "./types"; export type ContentBoxProps = { type: ContentBoxType; content: string | ReactNode; title: string; "data-e2e-test-id"?: string; renderTopRightElement?: () => React.ReactNode; }; export declare function ContentBox({ type, content, title, renderTopRightElement, "data-e2e-test-id": dataE2eTestId, }: ContentBoxProps): React.ReactElement;