/// import type { UiColors } from '../../../../../../common'; export type WSBProps = { layoutType: 'WSB_1' | 'WSB_2'; content1?: JSX.Element; containerColor?: string; areaColor?: string; isLoadingContainer1?: boolean; overrideContainer1ColorKey?: UiColors; }; declare const WSB: ({ layoutType, content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WSBProps) => JSX.Element; export default WSB;