import type { ISort } from '@teable/core'; interface IDraggableSortProps { sorts: NonNullable['sortObjs']; selectedFields: string[]; onChange: (sorts: NonNullable['sortObjs']) => void; } declare function DraggableSortList(props: IDraggableSortProps): import("react/jsx-runtime").JSX.Element; export { DraggableSortList };