/// import type { UiColors } from '../../../../../../common'; export type WTAProps = { content1?: JSX.Element; layoutType: 'WTA_1' | 'WTA_2' | 'WTA_3'; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; overrideContainer1ColorKey?: UiColors; }; declare const WTA: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WTAProps) => JSX.Element; export default WTA;