import React from 'react'; import type { AnswerValue, CheckboxPromptQuestion, PromptListChoices } from '../../../types.js'; export interface MultiSelectProps extends CheckboxPromptQuestion { id?: string; value?: AnswerValue; onChange: (name: string, value: AnswerValue) => void; dynamicChoices?: PromptListChoices; pending?: boolean; errorMessage?: string; calloutCollisionTransformation?: boolean; } export declare const MultiSelect: (props: MultiSelectProps) => React.JSX.Element; //# sourceMappingURL=MultiSelect.d.ts.map