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