/// import type { UiColors } from '../../../../../common'; export type ContentsContainerProps = { content1?: JSX.Element; content2?: JSX.Element; layoutType: 'MPA_1' | 'MPB_1' | 'MPC_1' | 'MPC_2' | 'MPD_1' | 'MPE_1' | 'MPF_1' | 'MPF_2'; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; isLoadingContainer2?: boolean; overrideContainer1ColorKey?: UiColors; overrideContainer2ColorKey?: UiColors; }; declare const ContentsContainer: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: ContentsContainerProps) => JSX.Element; export default ContentsContainer;