import { QuestionBaseProps, QuestionOption } from './types'; export interface SentenceOrderProps extends QuestionBaseProps { items: QuestionOption[]; /** Current order as list of item ids */ value: string[]; onChange: (orderedIds: string[]) => void; } export declare const SentenceOrder: ({ platform, interaction, stem, hint, number, items, value, onChange, disabled, feedback, className, "aria-label": ariaLabel, }: SentenceOrderProps) => import("react").JSX.Element;