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;
