import { ColorModesEnum } from '../../..'; import { Themes } from '../helpers'; type FeaturePreviewLevelOneSideBySideProps = { colorMode?: ColorModesEnum.LIGHT | ColorModesEnum.DARK; formType?: 'default' | 'extended'; accentColor: Themes; heroLabel: string; heroTitle: string; heroDescription: string; isEnterprise: boolean; }; export declare function FeaturePreviewLevelOneSideBySide({ accentColor, colorMode, isEnterprise, ...args }: FeaturePreviewLevelOneSideBySideProps): import("react/jsx-runtime").JSX.Element; export {};