import { type BgVariant } from '../../utils/bg.js'; export interface FeaturesWithImageProps { headline?: string; subheadline?: string; image?: string; media?: React.ReactNode; children?: React.ReactNode; bg?: BgVariant; className?: string; } export declare function FeaturesWithImage({ headline, subheadline, image, media, children, bg, className, }: FeaturesWithImageProps): import("react/jsx-runtime").JSX.Element;