/// import type { UiColors } from '../../../../../../common'; export type WFEProps = { layoutType: 'WFE_1' | 'WFE_2' | 'WFE_3' | 'WFE_4'; content1?: JSX.Element; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; overrideContainer1ColorKey?: UiColors; }; declare const WFE: ({ layoutType, content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WFEProps) => JSX.Element; export default WFE;