import React from "react";
interface ScholarProfileProps {
    scholarId: string;
    maxPublications?: number;
    className?: string;
}
declare const ScholarProfile: React.FC<ScholarProfileProps>;
export default ScholarProfile;
