import type { UiColors } from '../../../../../../common'; import type { MutableRefObject } from 'react'; export type WTOProps = { content1?: JSX.Element; layoutType: 'WTO_1'; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; overrideContainer1ColorKey?: UiColors; container1Ref?: MutableRefObject; }; declare const WTO: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey, container1Ref }: WTOProps) => JSX.Element; export default WTO;