import type { UiColors } from '../../../../../../common'; import type { MutableRefObject } from 'react'; export type WTNProps = { content1?: JSX.Element; layoutType: 'WTN_1' | 'WTN_2' | 'WTN_3'; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; overrideContainer1ColorKey?: UiColors; container1Ref?: MutableRefObject; }; declare const WTN: ({ content1, containerColor, areaColor, layoutType, isLoadingContainer1, overrideContainer1ColorKey, container1Ref }: WTNProps) => JSX.Element; export default WTN;