import { FileHandleAssociation } from '@sage-bionetworks/synapse-types';
import { CardLink } from '../CardContainer/CardLink';
export type ProgramsProps = {
    entityId: string;
    rgbIndex: number;
    titleColumnName: string;
    linkColumnName: string;
    summaryColumnName: string;
    imageFileHandleColumnName: string;
    linkConfig: CardLink;
};
export type ProgramsDataProps = {
    title: string;
    summary: string;
    link: string;
    exploreLink: string;
    color: string;
    fileHandleAssociation?: FileHandleAssociation;
};
export declare function Programs(props: ProgramsProps): import("react/jsx-runtime").JSX.Element;
export default Programs;
//# sourceMappingURL=Programs.d.ts.map