import { ColorModesEnum } from '../../../ThemeProvider'; type SolutionsOverviewProps = { variant: 'size' | 'industry' | 'use-case'; gridOverlay?: boolean; colorMode?: ColorModesEnum.LIGHT | ColorModesEnum.DARK; heroLabel: string; heroTitle: string; heroDescription: string; heroCtaTextPrimary: string; heroCtaTextSecondary: string; sectionIntroText: string; introVariant: 'pillars' | 'editorial prose' | 'editorial list'; [key: string]: unknown; }; export declare function SolutionsOverview({ variant, gridOverlay, colorMode, ...args }: SolutionsOverviewProps): import("react/jsx-runtime").JSX.Element; export {};