/// export declare const SET_ROW_ALL_CELL_BACKGROUND_COLOR = 1; export declare const SET_ROW_SPECIAL_CELL_BACKGROUND_COLOR = 2; export declare const SET_ROW_ALL_CELL_CONTENT_STYLE = 3; export declare const SET_ROW_SPECIAL_CELL_CONTENT_STYLE = 4; export declare const ROW_CELL_FORMAT_STYLE_MAP: { 1: string; 2: string; 3: string; 4: string; }; export declare const ROW_CELL_FORMAT_STYLE_ICON_MAP: { 1: () => JSX.Element; 2: () => JSX.Element; 3: () => JSX.Element; 4: () => JSX.Element; }; export declare const PURE_COLOUR_FILL = "pureColourFill"; export declare const POINT_TAG = "pointTag"; export declare const GHOST_TAG = "ghostTag"; export declare const FADE_COLOUR_TAG = "fadeColourTag"; export declare const PURE_COLOUR_TAG = "pureColourTag"; export declare const HYPER_LINK = "hyperlink"; export declare const PROGRESS_BAR = "progressBar"; export declare const BG_COLOR_FILL = "bgColorFill"; export declare const THUMBNAIL = "thumbnail"; export declare const ROW_CELL_CONTENT_STYLE_MAP: { pureColourFill: string; bgColorFill: string; pointTag: string; ghostTag: string; fadeColourTag: string; pureColourTag: string; hyperlink: string; progressBar: string; thumbnail: string; }; export declare const ROW_CELL_CONTENT_COMPONENT_MAP: { ghostTag: import("react").FC; pointTag: import("react").FC; fadeColourTag: import("react").FC; pureColourTag: import("react").FC; pureColourFill: import("react").FC; bgColorFill: import("react").FC; hyperlink: import("react").FC; progressBar: import("react").FC; thumbnail: import("react").FC; }; export declare const RELATION_OR = "or"; export declare const RELATION_AND = "add"; export declare const RELATION_AND_NEW = "and"; export declare const OPERATOR_EQUAL = "="; export declare const OPERATOR_NOT_EQUAL = "!="; export declare const OPERATOR_GREATER_THAN = ">"; export declare const OPERATOR_LESS_THAN = "<"; export declare const OPERATOR_INCLUDE = "include"; export declare const OPERATOR_NOT_INCLUDE = "notInclude"; export declare const OPERATOR_STARTS_WITH = "startsWith"; export declare const OPERATOR_ENDS_WITH = "endsWith"; export declare const OPERATOR_NULL = "null"; export declare const OPERATOR_NOT_NULL = "notNull"; export declare const RELATION_MAP: { or: string; add: string; }; export declare const RELATION_MAP_NEW: { or: string; and: string; }; export declare const CONDITION_MAP: { "=": string; "!=": string; ">": string; "<": string; include: string; notInclude: string; startsWith: string; endsWith: string; null: string; notNull: string; or: string; and: string; }; export declare const OPERATOR_MAP: { "=": string; "!=": string; ">": string; "<": string; include: string; notInclude: string; startsWith: string; endsWith: string; null: string; notNull: string; }; export declare const successColor = "rgba(65,225,155,1)"; export declare const pureWhiteColor = "rgba(255,255,255,1)"; export declare const blackColor = "rgba(28,36,46,1)"; export declare const grayColor = "#bfbfbf"; export declare const PRESETS_COLORS: string[];