/** * Entity-card barrel — re-exports every chat-surface card under one path. * * Cards in this directory are PURE PRESENTATION: they take a pre-resolved * `href`, optional `placeholderUrl`, and entity data as props. They write * NO internal click logic — consumers wrap the card with their own anchor * (hub's `` or lib's ``). */ export { EntityAuthorCard, EntityMetadataValueCell, EntityMetadataAuthorCell, EMPTY_AUTHOR_PLACEHOLDER, type EntityAuthorCardProps, } from './entity-author-card'; export { BlogImagePlaceholder } from './blog-image-placeholder'; export { EntityPortraitCard, type EntityPortraitCardProps, type EntityPortraitPerson, } from './entity-portrait-card'; export { useCoverImageFallback, hideOnError, type CoverImageFallback, } from './use-cover-image-fallback'; export { AdminContentCard } from './admin-content-card'; export { EmployeeEntryCard, EmployeeEntryCardSkeleton, EmployeeEntryBadge } from './employee-entry-card'; export type { EmployeeEntryCardData, EmployeeEntryCardProps } from './employee-entry-card'; export { WhatIShippedCard, WhatIShippedCardSkeleton } from './what-i-shipped-card'; export type { WhatIShippedCardData, WhatIShippedCardProps } from './what-i-shipped-card'; export { HowIWorkCard, HowIWorkCardSkeleton } from './how-i-work-card'; export type { HowIWorkCardData, HowIWorkCardProps } from './how-i-work-card'; export { BlockCard, type BlockCardProps } from './block-card'; export { ChatTicketItem, type ChatTicketItemData, type ChatTicketItemProps, } from './chat-ticket-item'; export { ChatVideoEntityCard, type ChatVideoEntityCardProps, } from './chat-video-entity-card'; export { ProductReleaseCard, ProductReleaseCardSkeleton, type ProductReleaseCardProps, type ProductReleaseCardSize, type ProductReleaseCardAnchorProps, } from './product-release-card'; export { defaultBuildProductReleaseCardProps, buildProductReleaseCardProps, type ProductReleaseCardDerivedProps, } from './product-release-card-defaults'; export { BlogCard, BlogCardSkeleton, type BlogCardProps } from './blog-card'; export { CaseStudyCard, CaseStudyCardSkeleton, type CaseStudyCardProps, } from './case-study-card'; export { CustomerInterviewCard, CustomerInterviewCardSkeleton, type CustomerInterviewCardProps, } from './customer-interview-card'; export { InvestorUpdateCard, InvestorUpdateCardSkeleton, type InvestorUpdateCardProps, } from './investor-update-card'; export { OnboardingGuideCard, OnboardingGuideCardSkeleton, type OnboardingGuideCardProps, } from './onboarding-guide-card'; export { RoadmapCard, RoadmapCardSkeleton, type RoadmapCardProps, type VoteType, } from './roadmap-card'; export { RoadmapVoteButton, type RoadmapVoteButtonProps, } from './roadmap-vote-button'; export { TaskTypeIcon, type TaskTypeIconProps } from './task-type-icon'; export { GitHubActivityCard, GitHubActivityCardSkeleton, type GitHubActivityCardProps, type GitHubActivityCardAnchorProps, } from './github-activity-card'; export { SlackMessageCard, SlackMessageCardSkeleton, type SlackMessageCardProps, type SlackMessageCardAnchorProps, } from './slack-message-card'; export { HubspotTicketCard, HubspotTicketCardSkeleton, type HubspotTicketCardProps, type HubspotTicketCardAnchorProps, } from './hubspot-ticket-card'; export { DataRoomDocCard, DataRoomDocCardSkeleton, type DataRoomDocCardProps, type DataRoomDocCardAnchorProps, } from './data-room-doc-card'; export { ProgramCard, ProgramCardSkeleton, type ProgramCardProps, } from './program-card'; export { CampaignCardAdmin, CampaignCardAdminSkeleton, type CampaignCardItem, type CampaignCardAdminProps, type CampaignCardAdminAnchorProps, } from './campaign-card-admin'; export { GenericEntityCard, GenericEntityCardSkeleton, type GenericEntityCardItem, type GenericEntityCardProps, type GenericEntityCardAnchorProps, } from './generic-entity-card'; export { renderChatInlineEntityCard, ChatCardLoader, type ChatCardRenderOptions, type ChatCardDispatchExtras, } from './dispatch'; export { programItemToStripProfile, type ProgramAuthorRef, } from '../types/entities/program-types'; //# sourceMappingURL=index.d.ts.map