export interface CardProps { title: string; value: number; status: { label: string; isComplete: boolean; }[]; directionMetric: { description: string; data: { value: number; limit: number; }; }; } export declare function Card({ title, value, status, directionMetric }: CardProps): JSX.Element; export default Card;