import * as React from 'react'; export interface JudgePillProps extends React.HTMLAttributes { judgeId: string; score: number; } declare function JudgePill({ judgeId, score, className, ...props }: JudgePillProps): import("react/jsx-runtime").JSX.Element; export { JudgePill };