/// import type { UiColors } from '../../../../../../common'; export type WFBProps = { content1?: JSX.Element; content2?: JSX.Element; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; overrideContainer1ColorKey?: UiColors; }; declare const WFB: ({ content1, content2, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WFBProps) => JSX.Element; export default WFB;