type EmptyCardProps = { type: 'coming_soon'; label?: string; withArrow?: boolean; }; type CardProps = { type: 'active'; label: string; image?: string | null; link?: string | null; withArrow?: boolean; isRounded?: boolean; }; export type ProgramCardProps = EmptyCardProps | CardProps; export declare function ProgramCard(props: ProgramCardProps): import("react").JSX.Element | null; export {};