/// import type { UiColors } from '../../../../common'; export type ContainersBoxProps = { layoutType: 'WFA_1' | 'WFA_2' | 'WFA_3' | 'WFA_4' | 'WFB_1' | 'WFC_1' | 'WFD_1' | 'WFD_2' | 'WFE_1' | 'WFE_2' | 'WFE_3' | 'WFE_4' | 'WFF_1' | 'WFG_1' | 'WFG_2' | 'WFG_3' | 'WFG_4' | 'WFG_5' | 'WFG_6' | 'WFH_1' | 'WFI_1' | 'WFI_2' | 'WFI_3' | 'WFI_4' | 'WFI_5' | 'WFI_6' | 'WFJ_1' | 'WFK_1' | 'WFL_1' | 'WFL_2' | 'WFL_3' | 'WFL_4'; pageMenuContent?: JSX.Element; subMenuContent?: JSX.Element; tabMenuContent?: JSX.Element; stepContent?: 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, subMenuContent, tabMenuContent, stepContent, content1, content2, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: ContainersBoxProps) => JSX.Element; export default ContainersBox;