@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
20 lines (19 loc) • 590 B
TypeScript
import React from "react";
import { Claim } from "../types";
interface ClaimReviewFeedProps {
claims: Claim[];
profile: {
name: string;
avatarUrl?: string;
verificationStatus: "verified" | "pending" | "rejected";
metaInfo: string[];
};
onProfileVerify: () => void;
onProfileReject: () => void;
onClaimVerify: (id: string) => void;
onClaimDecline: (id: string) => void;
onSubmit: (items: any[]) => void;
onClose?: () => void;
}
declare const ClaimReviewFeed: React.FC<ClaimReviewFeedProps>;
export default ClaimReviewFeed;