export declare class AdInsConstant { static RestrictionBetween: string; static RestrictionLike: string; static RestrictionEq: string; static RestrictionNeq: string; static RestrictionGt: string; static RestrictionGte: string; static RestrictionLt: string; static RestrictionLte: string; static RestrictionIn: string; static RestrictionNotIn: string; static RestrictionOr: string; static RestrictionOrNeq: string; static RestrictionIsNull: string; static RestrictionIsNotNull: string; static RestrictionGTE: string; static RestrictionLTE: string; static showData: string; static JoinTypeInner: string; static JoinTypeLeft: string; } export declare const MIME_TYPES: { readonly csv: "text/csv;charset=UTF-8"; readonly excel: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8"; readonly json: "text/json;charset=UTF-8"; }; export declare const EXPORT_DATA_TYPES: { readonly csv: "csv"; readonly excel: "excel"; readonly json: "json"; }; export declare const EXTENSION_TYPE: { readonly csv: ".csv"; readonly excel: ".xlsx"; readonly json: ".json"; }; export declare const ALLOWED_MIME_TYPES: readonly ["text/csv;charset=UTF-8", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8", "text/json;charset=UTF-8"]; export declare const ALLOWED_EXPORT_DATA_TYPES: readonly ["csv", "excel", "json"]; export declare const ALLOWED_EXTENSION_TYPE: readonly [".csv", ".xlsx", ".json"]; export type FileMimeType = typeof ALLOWED_MIME_TYPES[number]; export type FileExportDataType = typeof ALLOWED_EXPORT_DATA_TYPES[number]; export type FileExtensionType = typeof ALLOWED_EXTENSION_TYPE[number]; //# sourceMappingURL=adins-constant.d.ts.map