import React from "react"; export interface ActionCardProps { icon: React.ComponentType; iconBackgroundColor?: string; iconColor?: string; label: string; description: string | React.ReactNode; isSelected: boolean; canAdd: boolean; cantAddReason?: string; footer?: { label: string; onClick: () => void; }; onClick?: () => void; className?: string; cardContainerClassName?: string; mountPortal?: boolean; mountPortalContainer?: HTMLElement; descriptionLineClamp?: number; } export declare const ActionCard: React.ForwardRefExoticComponent>; //# sourceMappingURL=ActionCard.d.ts.map