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