import { ReactNode } from 'react'; import { QuestionBaseProps, QuestionOption } from './types'; export interface MatchingProps extends QuestionBaseProps { left: QuestionOption[]; right: QuestionOption[]; value: Record; onChange: (pairs: Record) => void; leftTitle?: ReactNode; rightTitle?: ReactNode; /** Expected pairs — used only when `feedback` is set for styling */ correctPairs?: Record; } export declare const Matching: ({ platform, interaction, stem, hint, number, left, right, value, onChange, leftTitle, rightTitle, disabled, feedback, correctPairs, className, "aria-label": ariaLabel, }: MatchingProps) => import("react").JSX.Element;