export interface UpdateFilterItem { field: string; operator: string; val: string; } export interface CdFilter { field?: string; operator: string; val?: any; fieldType?: string; jField?: string; jPath?: string; jVal?: any; } export declare const ENDPOINT_APPS: string; export interface PostData { ctx: string; m: string; c: string; a: string; dat: { token: string; }; args: any; } export declare const numericNumberReg1 = "^-?[0-9]\\d*(\\.\\d{1,2})?$"; export declare const numericNumberReg2 = "/^[0-9]d*$/"; export declare const numericNumberReg3: RegExp; export declare const numericNumberReg4: RegExp;