/// import type { UiColors } from '../../../../../../common'; export type WFLProps = { layoutType: 'WFL_1' | 'WFL_2' | 'WFL_3' | 'WFL_4'; content1?: JSX.Element; content2?: JSX.Element; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; isLoadingContainer2?: boolean; overrideContainer1ColorKey?: UiColors; overrideContainer2ColorKey?: UiColors; }; declare const WFL: ({ layoutType, content1, content2, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: WFLProps) => JSX.Element; export default WFL;