import { ItemConfigType } from 'golden-layout';
export interface Settings {
    ent?: string;
    fldlst?: string[];
    additional?: any;
    colwidth?: {
        [fld: string]: number;
    };
    taborder?: string[];
    goldenlayout?: ItemConfigType[];
    sort?: {
        field: string;
        order: number;
    }[];
    group?: string[];
    filter?: {
        [field: string]: string;
    };
    misc?: any;
    params?: any;
}
