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