UNPKG

@desci-labs/frontend-components

Version:

A library for commonly used components on the DeSci Frontend web apps

17 lines 849 B
import { RefereeFinderData } from '../interfaces'; interface RefereeFinderAuthorsResultProps { showUpgradePlan: boolean; handleAuthorClick: (author: { orcid?: string; id?: string; }) => void; refereeFinderDataResult: RefereeFinderData; handleApplyControls: () => void; numberOfFreeSearches?: number; numberOfFreeSearchesAllowed?: number; sidebarLeftPosition: string; handlePlanUpgrade?: () => void; } declare const RefereeFinderAuthorsResult: ({ showUpgradePlan, handleAuthorClick, refereeFinderDataResult, handleApplyControls, numberOfFreeSearches, numberOfFreeSearchesAllowed, sidebarLeftPosition, handlePlanUpgrade }: RefereeFinderAuthorsResultProps) => import("react/jsx-runtime").JSX.Element; export default RefereeFinderAuthorsResult; //# sourceMappingURL=RefereeFinderAuthorsResult.d.ts.map