import React, { ReactElement } from "react"; import { type IconTypes } from "../../Icons"; import { ActionMenu } from "../ActionMenu"; export interface Props { id: string; dataTestId?: string; children?: ReactElement; borderColor?: string; title: string; titleColor?: string; classes?: string; borderWidth?: number; titleTag?: string; iconType?: IconTypes; actionMenu?: ReturnType; } export declare const BoxContainer: (props: Props) => React.JSX.Element;