export interface IPickerColumnData {
    label: string;
    value: string | number;
    disabled?: boolean;
    children?: IPickerColumnData[];
}
