import { QuestionOption, QuestionPlatform } from '../types'; export interface SentenceOrderListProps { platform: QuestionPlatform; items: QuestionOption[]; value: string[]; onChange: (orderedIds: string[]) => void; disabled?: boolean; } export declare const SentenceOrderList: ({ platform, items, value, onChange, disabled, }: SentenceOrderListProps) => import("react").JSX.Element;