/** * @jsxRuntime classic * @jsx jsx */ import { type ReactNode } from 'react'; interface DraggableTableHeadingProps { children: ReactNode; dndPreviewHeight: number; dragPreview: React.ReactNode; id: string; index: number; isWrapped?: boolean; onIsWrappedChange?: (shouldWrap: boolean) => void; onWidthChange?: (width: number) => void; tableId: symbol; width?: number; } export declare const DraggableTableHeading: ({ children, id, index, tableId, dndPreviewHeight, dragPreview, width, onWidthChange, isWrapped, onIsWrappedChange, }: DraggableTableHeadingProps) => JSX.Element; export {};