/// import type { UiColors } from '../../../../../../common'; export type WTUProps = { content1?: JSX.Element; content2?: JSX.Element; layoutType: 'WTU_1' | 'WTU_2'; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; isLoadingContainer2?: boolean; overrideContainer1ColorKey?: UiColors; overrideContainer2ColorKey?: UiColors; showDivider?: boolean; }; export type StyleProps = { $contentsAreaWidth?: number; }; declare const WTU: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey, showDivider }: WTUProps) => JSX.Element; export default WTU;