import type { UiColors } from '../../../../../common'; import type { MutableRefObject } from 'react'; export type ContentsContainerProps = { content1?: JSX.Element; content2?: JSX.Element; layoutType: 'MSA_1' | 'MSA_2' | 'MSB_1' | 'MSC_1' | 'MSC_2' | 'MSD_1' | 'MSE_1' | 'MSF_1' | 'MSF_2' | 'MSG_1' | 'MSH_1'; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; isLoadingContainer2?: boolean; overrideContainer1ColorKey?: UiColors; overrideContainer2ColorKey?: UiColors; container1Ref?: MutableRefObject; }; declare const ContentsContainer: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey, container1Ref }: ContentsContainerProps) => JSX.Element; export default ContentsContainer;