/// import type { UiColors } from '../../../../common'; export type ContainersBoxProps = { layoutType: 'WSA_1' | 'WSB_1' | 'WSB_2' | 'WSC_1' | 'WSD_1' | 'WSE_1' | 'WSF_1' | 'WSF_2' | 'WSF_3' | 'WSF_4' | 'WSF_5' | 'WSF_6' | 'WSF_7' | 'WSG_1' | 'WSG_2' | 'WSG_3' | 'WSG_4' | 'WSG_5' | 'WSH_1' | 'WSI_1' | 'WSI_2' | 'WSJ_1'; pageMenuContent?: JSX.Element; tabMenuContent?: JSX.Element; content1?: JSX.Element; content2?: JSX.Element; children?: React.ReactNode; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; isLoadingContainer2?: boolean; overrideContainer1ColorKey?: UiColors; overrideContainer2ColorKey?: UiColors; }; declare const ContainersBox: ({ layoutType, pageMenuContent, content1, content2, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: ContainersBoxProps) => JSX.Element; export default ContainersBox;