import { Table as TanstackTable } from '@tanstack/react-table'; /** * Hook to analyze the columns in the table to determine the visual position and pinning status * @param table - The table to analyze */ export declare const useColumnOrder: ({ table }: { table: TanstackTable; }) => { columnOrder: number[]; };