export declare const FORM_COMPNAME = "Form"; export declare const TABLE_COMPNAME = "Table"; export declare const TREETABLE_COMPNAME = "TreeTable"; export declare const H5_TABLE_COMPNAME = "DynamicTable"; export declare const DESCRIPTION_COMPNAME = "Description"; export declare const TRANSFER_COMPNAME = "Transfer"; export declare const CHART_LINE_COMPNAME = "ChartLine"; export declare const CHART_BAR_COMPNAME = "ChartBar"; export declare const RADAR_CHART_COMPNAME = "LXRadarChart"; export declare const H5_LINE_CHART_COMPNAME = "LXLineChart"; export declare const H5_BAR_CHART_COMPNAME = "LXBarChart"; export declare const ECHARTS_COMPNAME: string[]; export declare const CELL_CONTENT_TITLE_TIP_TYPE = "title"; export declare const CELL_CONTENT_POPOVER_TIP_TYPE = "Popover"; /** * 当需要初始化配置项时使用 * 注:属于业务层面需求,不合适作为 util * @param settingCfg 某项配置项 */ export declare const initialSettingCfg: (settingCfg?: any) => void; export declare const CELL_CONTENT_TIP_TYPES: { label: string; value: string; included: string[]; }[]; export declare const COL_CONFIG_WIDTH = 158; export declare const COL_META_MAP: { Table: { key: string; title: string; dataIndex: string; }; TreeTable: { key: string; title: string; dataIndex: string; }; DynamicTable: { key: string; title: string; dataIndex: string; }; Description: { key: string; title: string; dataIndex: string; }; Transfer: { key: string; title: string; dataIndex: string; }; Form: { key: string; title: string; dataIndex: string; }; ChartLine: { key: string; title: string; dataIndex: string; }; LXLineChart: { key: string; title: string; dataIndex: string; }; ChartBar: { key: string; title: string; dataIndex: string; }; LXBarChart: { key: string; title: string; dataIndex: string; }; LXRadarChart: { key: string; title: string; dataIndex: string; }; }; export declare const SETTING_LAYOUT: { Table: string; Form: string; Description: string; Transfer: string; ChartLine: string; LXLineChart: string; ChartBar: string; LXBarChart: string; };