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