declare type AppParamType = 'period' | 'list' | 'value' | 'key-value' | 'hier-single' | 'object'; export interface IAppParamData { type: AppParamType; code: string; value?: string; list?: Array; kv?: any; period?: { from: string; to: string; periodType?: string; fromLabel?: string; toLabel?: string; periodTypeLabel?: string; }; level?: number; hierCode?: string; object?: any; additionalParamName?: string; additionalParamValue?: string; } export {};