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