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