/**
 * Selection column interface
 *
 * @param {string} label - the label of the column
 */
export interface SelectionColumn {
    label: string;
}
