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