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