import type { DraggableSyntheticListeners } from '@dnd-kit/core'; import type { Column } from 'payload'; import type { HTMLAttributes, Ref } from 'react'; export type Props = { readonly cellMap: Record; readonly columns: Column[]; readonly dragAttributes?: HTMLAttributes; readonly dragListeners?: DraggableSyntheticListeners; readonly ref?: Ref; readonly rowId: number | string; } & HTMLAttributes; export declare const OrderableRow: ({ cellMap, columns, dragAttributes, dragListeners, rowId, ...rest }: Props) => import("react").JSX.Element; //# sourceMappingURL=OrderableRow.d.ts.map