import { QuestionBaseProps, QuestionOption } from './types'; export interface MultipleSelectProps extends QuestionBaseProps { options: QuestionOption[]; value: string[]; onChange: (ids: string[]) => void; /** Correct option ids — used only when `feedback` is set for styling */ correctAnswers?: string[]; } export declare const MultipleSelect: ({ platform, interaction, stem, hint, number, options, value, onChange, disabled, feedback, correctAnswers, className, "aria-label": ariaLabel, }: MultipleSelectProps) => import("react").JSX.Element;