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