import type { SortingFnOption as TanStackSortingFnOption } from '@tanstack/table-core'; import { TableColumnSortOperation } from '../../table-column/base/types'; /** * Returns the sorting function for TanStack to use based on the specified * TableColumnSortOperation */ export declare function getTanStackSortingFunction(sortOperation: TableColumnSortOperation): TanStackSortingFnOption;