import React from 'react'; import type { RenderInfo } from './interfaces'; import type { BaseTableProps } from "./table"; export default function TableHeader({ info, dragType }: { info: RenderInfo; dragType: BaseTableProps['dragType']; }): React.JSX.Element;