/// import type { UiColors } from '../../../../../../common'; export type WTMProps = { content1?: JSX.Element; layoutType: 'WTM_1' | 'WTM_2' | 'WTM_3'; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; overrideContainer1ColorKey?: UiColors; }; declare const WTM: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WTMProps) => JSX.Element; export default WTM;