import { TTreemapData, MatrixModel } from './types'; export declare const TOOLTIP_BTN_EDIT_CLASS = "rfm-treemap__tooltip"; export declare const RFM_PERSONAS: { CHAMPIONS: { id: number; name: string; label: string; models: MatrixModel[]; color: string; }; LOYAL: { id: number; name: string; label: string; models: MatrixModel[]; color: string; }; POTENTIAL_LOYALIST: { id: number; name: string; label: string; models: MatrixModel[]; color: string; }; NEW_CUSTOMERS: { id: number; name: string; label: string; models: MatrixModel[]; color: string; }; PROMISING: { id: number; name: string; label: string; models: MatrixModel[]; color: string; }; NEED_ATTENTION: { id: number; name: string; label: string; models: MatrixModel[]; color: string; }; ABOUT_TO_SLEEP: { id: number; name: string; label: string; models: MatrixModel[]; color: string; }; AT_RISK: { id: number; name: string; label: string; models: MatrixModel[]; color: string; }; CANNOT_LOSE_THEM: { id: number; name: string; label: string; models: MatrixModel[]; color: string; }; HIBERNATING_CUSTOMERS: { id: number; name: string; label: string; models: MatrixModel[]; color: string; }; LOST_CUSTOMERS: { id: number; name: string; label: string; models: MatrixModel[]; color: string; }; }; export declare const RFM_SCORES: { [x: string]: { "3x3": number[]; }; }; export declare const TEST_DATA: TTreemapData; export declare const MAP_GRANULARITY_TO_SUFFIX: { day: string; week: string; month: string; year: string; quarter: string; };