import type { TableColumns } from '../types'; interface Props { allowRowSelect?: boolean; isDraggable?: boolean; columns?: TableColumns; data?: { [key: string]: any; }[]; onRowClick?: (row: any) => void; onRowAction?: (target: { action: string; to: any; from: any; }) => void; } declare const STable: import("svelte").Component; type STable = ReturnType; export default STable;