import type { GridColumnModel, GridRowModel } from "../Grid"; import type { ColumnDragState } from "./gridHooks"; export interface ColumnGhostProps { dragState?: ColumnDragState; columns: GridColumnModel[]; rows: GridRowModel[]; zebra?: boolean; } export declare function ColumnGhost(props: ColumnGhostProps): import("react/jsx-runtime").JSX.Element | null;