import type * as React from "react"; export interface EnrichmentProgramListProps extends React.HTMLAttributes { cruiseKey: string; emptyState?: React.ReactNode; } /** * Connected list of expedition enrichment staff (naturalists, historians, * photographers, lecturers, experts) for a given cruise. Pure read-only * display — for editing, pair with a separate enrichment-form component * driven by `useEnrichmentMutation`. */ export declare function EnrichmentProgramList({ cruiseKey, emptyState, className, ...props }: EnrichmentProgramListProps): React.JSX.Element;