import * as React from "react"; import { MatchTier } from "./match-badge"; export interface JobMatchCardProps { title: string; matchPercentage: number; matchTier?: MatchTier; postedBy: string; timestamp: string; onClick?: () => void; onViewDetails?: () => void; className?: string; } export declare const JobMatchCard: React.ForwardRefExoticComponent>; //# sourceMappingURL=job-match-card.d.ts.map