import type { UiColors } from '../../../../../../common'; import type { MutableRefObject } from 'react'; export type WTTProps = { content1?: JSX.Element; content2?: JSX.Element; layoutType: 'WTT_1' | 'WTT_2'; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; overrideContainer1ColorKey?: UiColors; container1Ref?: MutableRefObject; }; declare const WTT: ({ content1, content2, containerColor, areaColor, layoutType, isLoadingContainer1, overrideContainer1ColorKey, container1Ref }: WTTProps) => JSX.Element; export default WTT;