/// import type { UiColors } from '../../../../../../common'; export type WTHProps = { content1?: JSX.Element; layoutType: 'WTH_1' | 'WTH_2' | 'WTH_3'; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; overrideContainer1ColorKey?: UiColors; }; declare const WTH: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WTHProps) => JSX.Element; export default WTH;