import { type BgVariant } from '../../utils/bg.js'; export interface TabItem { label: string; image: string; title: string; description: string; } export interface FeaturesTabsProps { headline?: string; subheadline?: string; tabs?: TabItem[]; bg?: BgVariant; className?: string; } export declare function FeaturesTabs({ headline, subheadline, tabs, bg, className, }: FeaturesTabsProps): import("react/jsx-runtime").JSX.Element;