/// import type { UiColors } from '../../../../../../common'; export type WHEProps = { layoutType: 'WHE_1' | 'WHE_2'; content1?: JSX.Element; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; overrideContainer1ColorKey?: UiColors; }; declare const WHE: ({ layoutType, content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WHEProps) => JSX.Element; export default WHE;