import * as React from 'react';
/**
* Wraps header content to act as a drop-target for column reorder. Emits `data-drop-active` and
* `data-drop-side` attributes that the theme styles by default; the `children` render-prop form
* exposes the same state for full visual control.
*
* The `
` itself remains the drag source + drop handler (via `DataTable.THeadCell`); this
* component is purely a feedback layer.
*/
export declare const DataTableColumnReorderTarget: ((inProps?: (import("@primereact/types/core").GlobalComponentProps & {} & {} & Omit, keyof import("@primereact/types/core").GlobalComponentProps> & import("@primereact/types/primitive/datatable").DataTableColumnReorderTargetProps) | undefined) => React.JSX.Element | null) & Record & {
displayName?: string;
};
|