import type { Deal, Customer, DealCategory } from './types'; type DealCardProps = { deal: Deal; customer: Partial | undefined; categories: DealCategory[]; onClick: () => void; compact?: boolean; }; export declare function DealCard({ deal, customer, categories, onClick, compact }: DealCardProps): import("react/jsx-runtime").JSX.Element; export {};