import { DescriptorAction } from './descriptor-action'; import { NVP } from '../shared/nvp'; /** * A class that describes a column */ export declare class DescriptorColumn { /** * Identification of the column */ id: string; /** * Label of the column */ label: string; /** * When boolean value */ withBool?: boolean; /** * Display this value when true */ valueWhenTrue?: string; /** * Display this value when false */ valueWhenFalse?: string; /** * Optional actions for the column */ actions?: DescriptorAction[]; /** * Map enum with values */ mapping?: NVP[]; }