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