import type { ColumnDef, Row } from '@tanstack/table-core'; import type { Snippet } from 'svelte'; /** * Create the selection column definition for row selection */ export declare function createSelectionColumn(): ColumnDef; /** * Create the actions column definition for row actions */ export declare function createActionsColumn(rowActionsSnippet: Snippet<[{ row: Row; }]>): ColumnDef;