/// import type { UiColors } from '../../../../../../common'; export type WFAProps = { layoutType: 'WFA_1' | 'WFA_2' | 'WFA_3' | 'WFA_4'; content1?: JSX.Element; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; overrideContainer1ColorKey?: UiColors; }; declare const WFA: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WFAProps) => JSX.Element; export default WFA;