import type { ListSorterItem, ListSorterProps } from '../ListSorter'; export type ListSorterDialogProps = { className?: string; open: boolean; title: string; onClose: () => void; dataTestId?: string; } & Omit, 'onChange'> & { cancelLabel?: string; submitLabel?: string; onSubmit: (items: T[]) => void | Promise; }; export declare function ListSorterDialog({ className, open, title, items, idResolver, renderer, cancelLabel, submitLabel, onSubmit, onClose, dataTestId, }: ListSorterDialogProps): import("react/jsx-runtime").JSX.Element;