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