import { ColorModesEnum } from '../../..'; import { Themes } from '../helpers'; type FeaturePreviewLevelZeroProps = { colorMode?: ColorModesEnum.LIGHT | ColorModesEnum.DARK; accentColor: Themes; heroAlign: 'start' | 'center'; heroVisualPosition: 'block-end' | 'inline-end'; showHeroVisual: boolean; heroLabel: string; heroTitle: string; heroDescription: string; heroCtaTextPrimary: string; heroCtaTextSecondary: string; }; export declare function FeaturePreviewLevelZero({ accentColor, colorMode, ...args }: FeaturePreviewLevelZeroProps): import("react/jsx-runtime").JSX.Element; export {};