export type SelectionKey = string | number export type Selection = 'all' | Set export interface SortDescriptor { column: SelectionKey direction: 'ascending' | 'descending' }