export interface BoxWithTitleProps { title: string; message?: string; titleBackgroundColor?: string; borderColor?: string; textCentered?: boolean; children?: React.ReactNode; flexGrow?: number; } export declare function getBoxWithTitle(props: BoxWithTitleProps): React.ReactNode; export declare function BoxWithTitle({ title, message, titleBackgroundColor, borderColor, textCentered, children, flexGrow, }: BoxWithTitleProps): React.ReactNode;