import type { Header } from '@tanstack/vue-table'; import type { SortValueDeserialized } from './DataView.vue'; export interface TableHeaderCellProps { /** * A unique value correlated to the data in this header's column (without a leading hyphen/dash). * For example: `'product_name'` (with no leading dash/hyphen). */ sortId?: SortValueDeserialized['id']; /** * TanStack header instance passed when Table is in schema-driven mode. * When provided, sorting is controlled by TanStack instead of DataView. * Typed as any so DataTable can pass Header without a type assertion. */ schemaDrivenHeader?: Header; } declare var __VLS_1: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_1) => any; }; declare const __VLS_base: import("vue").DefineComponent & Readonly<{}>, { sortId: SortValueDeserialized["id"]; schemaDrivenHeader: Header; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };