/// import type { UiColors } from '../../../../../../common'; export type MSBProps = { content1?: JSX.Element; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; overrideContainer1ColorKey?: UiColors; }; declare const MSB: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MSBProps) => JSX.Element; export default MSB;