/// import type { UiColors } from '../../../../../../common'; export type WTXProps = { content1?: JSX.Element; content2?: JSX.Element; content3?: JSX.Element; layoutType?: 'WTX_1'; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; isLoadingContainer2?: boolean; isLoadingContainer3?: boolean; overrideContainer1ColorKey?: UiColors; overrideContainer2ColorKey?: UiColors; overrideContainer3ColorKey?: UiColors; }; export type StyleProps = { $contentsArea3Width?: number; }; declare const WTX: ({ content1, content2, content3, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, isLoadingContainer3, overrideContainer1ColorKey, overrideContainer2ColorKey, overrideContainer3ColorKey }: WTXProps) => JSX.Element; export default WTX;