@elastic/eui 117.0.0 → 117.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/es/components/flyout/_flyout_resize_button.styles.js +2 -2
  2. package/es/components/flyout/flyout.styles.js +2 -2
  3. package/es/components/icon/icon_map.js +1881 -913
  4. package/es/components/panel/panel.styles.js +3 -3
  5. package/es/components/panel/split_panel/split_panel.styles.js +4 -4
  6. package/es/components/search_bar/query/execute_ast.js +4 -6
  7. package/es/test/rtl/render_hook.js +10 -3
  8. package/eui.d.ts +483 -457
  9. package/lib/components/flyout/_flyout_resize_button.styles.js +2 -2
  10. package/lib/components/flyout/flyout.styles.js +2 -2
  11. package/lib/components/icon/icon_map.js +1882 -914
  12. package/lib/components/panel/panel.styles.js +3 -3
  13. package/lib/components/panel/split_panel/split_panel.styles.js +4 -4
  14. package/lib/components/search_bar/query/execute_ast.js +4 -6
  15. package/lib/test/rtl/render_hook.js +10 -3
  16. package/optimize/es/components/flyout/_flyout_resize_button.styles.js +2 -2
  17. package/optimize/es/components/flyout/flyout.styles.js +2 -2
  18. package/optimize/es/components/icon/icon_map.js +1876 -913
  19. package/optimize/es/components/panel/panel.styles.js +3 -3
  20. package/optimize/es/components/panel/split_panel/split_panel.styles.js +4 -4
  21. package/optimize/es/components/search_bar/query/execute_ast.js +4 -6
  22. package/optimize/es/test/rtl/render_hook.js +10 -3
  23. package/optimize/lib/components/flyout/_flyout_resize_button.styles.js +2 -2
  24. package/optimize/lib/components/flyout/flyout.styles.js +2 -2
  25. package/optimize/lib/components/icon/icon_map.js +1877 -914
  26. package/optimize/lib/components/panel/panel.styles.js +3 -3
  27. package/optimize/lib/components/panel/split_panel/split_panel.styles.js +4 -4
  28. package/optimize/lib/components/search_bar/query/execute_ast.js +4 -6
  29. package/optimize/lib/test/rtl/render_hook.js +10 -3
  30. package/package.json +3 -21
  31. package/test-env/components/flyout/_flyout_resize_button.styles.js +2 -2
  32. package/test-env/components/flyout/flyout.styles.js +2 -2
  33. package/test-env/components/icon/icon_map.js +1877 -914
  34. package/test-env/components/panel/panel.styles.js +3 -3
  35. package/test-env/components/panel/split_panel/split_panel.styles.js +4 -4
  36. package/test-env/components/search_bar/query/execute_ast.js +4 -6
  37. package/test-env/test/rtl/render_hook.js +10 -3
package/eui.d.ts CHANGED
@@ -8913,191 +8913,203 @@ declare module '@elastic/eui/src/components/icon/assets/token_vector_sparse' {
8913
8913
 
8914
8914
  }
8915
8915
  declare module '@elastic/eui/src/components/icon/icon_map' {
8916
+ import type { ComponentType } from 'react';
8917
+ type IconImportLoader = () => Promise<{
8918
+ icon: ComponentType;
8919
+ }>;
8920
+ export type IconCategory = 'glyph' | 'app' | 'elasticLogo' | 'thirdPartyLogo' | 'ml' | 'token';
8921
+ type IconMetadata = {
8922
+ category?: IconCategory;
8923
+ synonyms?: string[];
8924
+ };
8925
+ type IconImportLoaderWithMetadata = IconImportLoader & {
8926
+ metadata?: IconMetadata;
8927
+ };
8916
8928
  export const typeToPathMap: {
8917
- accessibility: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/accessibility")>;
8918
- addDataApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_add_data")>;
8929
+ accessibility: IconImportLoaderWithMetadata;
8930
+ addDataApp: IconImportLoaderWithMetadata;
8919
8931
  addToChat: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/add_to_chat")>;
8920
- addToDashboard: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/add_to_dashboard")>;
8921
- advancedSettingsApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_advanced_settings")>;
8922
- agentApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_fleet")>;
8923
- aggregate: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/aggregate")>;
8924
- alignBottom: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/align_bottom")>;
8925
- alignBottomLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/align_bottom_left")>;
8926
- alignBottomRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/align_bottom_right")>;
8927
- alignCenterHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/align_center_horizontal")>;
8928
- alignCenterVertical: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/align_center_vertical")>;
8929
- alignLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/align_left")>;
8930
- alignRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/align_right")>;
8931
- alignTop: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/align_top")>;
8932
- alignTopLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/align_top_left")>;
8933
- alignTopRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/align_top_right")>;
8932
+ addToDashboard: IconImportLoaderWithMetadata;
8933
+ advancedSettingsApp: IconImportLoaderWithMetadata;
8934
+ agentApp: IconImportLoaderWithMetadata;
8935
+ aggregate: IconImportLoaderWithMetadata;
8936
+ alignBottom: IconImportLoaderWithMetadata;
8937
+ alignBottomLeft: IconImportLoaderWithMetadata;
8938
+ alignBottomRight: IconImportLoaderWithMetadata;
8939
+ alignCenterHorizontal: IconImportLoaderWithMetadata;
8940
+ alignCenterVertical: IconImportLoaderWithMetadata;
8941
+ alignLeft: IconImportLoaderWithMetadata;
8942
+ alignRight: IconImportLoaderWithMetadata;
8943
+ alignTop: IconImportLoaderWithMetadata;
8944
+ alignTopLeft: IconImportLoaderWithMetadata;
8945
+ alignTopRight: IconImportLoaderWithMetadata;
8934
8946
  alert: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/warning")>;
8935
8947
  analyzeEvent: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/analyze_event")>;
8936
8948
  annotation: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/annotation")>;
8937
8949
  anomalyChart: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_anomaly")>;
8938
- chartAnomaly: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_anomaly")>;
8950
+ chartAnomaly: IconImportLoaderWithMetadata;
8939
8951
  anomalySwimLane: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/anomaly_swim_lane")>;
8940
- apmApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_apm")>;
8952
+ apmApp: IconImportLoaderWithMetadata;
8941
8953
  apmTrace: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_waterfall")>;
8942
- chartWaterfall: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_waterfall")>;
8943
- appSearchApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_app_search")>;
8954
+ chartWaterfall: IconImportLoaderWithMetadata;
8955
+ appSearchApp: IconImportLoaderWithMetadata;
8944
8956
  apps: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/apps")>;
8945
8957
  arrowDown: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_single_down")>;
8946
- chevronSingleDown: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_single_down")>;
8958
+ chevronSingleDown: IconImportLoaderWithMetadata;
8947
8959
  arrowLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_single_left")>;
8948
- chevronSingleLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_single_left")>;
8960
+ chevronSingleLeft: IconImportLoaderWithMetadata;
8949
8961
  arrowRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_single_right")>;
8950
- chevronSingleRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_single_right")>;
8962
+ chevronSingleRight: IconImportLoaderWithMetadata;
8951
8963
  arrowUp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_single_up")>;
8952
- chevronSingleUp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_single_up")>;
8964
+ chevronSingleUp: IconImportLoaderWithMetadata;
8953
8965
  arrowStart: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_limit_left")>;
8954
- chevronLimitLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_limit_left")>;
8966
+ chevronLimitLeft: IconImportLoaderWithMetadata;
8955
8967
  arrowEnd: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_limit_right")>;
8956
- chevronLimitRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_limit_right")>;
8968
+ chevronLimitRight: IconImportLoaderWithMetadata;
8957
8969
  article: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/article")>;
8958
- asterisk: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/asterisk")>;
8959
- at: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/at")>;
8960
- archive: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/archive")>;
8961
- axisX: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/axis_x")>;
8962
- axisYLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/axis_y_left")>;
8963
- axisYRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/axis_y_right")>;
8964
- auditbeatApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_auditbeat")>;
8965
- backgroundTask: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/background_task")>;
8970
+ asterisk: IconImportLoaderWithMetadata;
8971
+ at: IconImportLoaderWithMetadata;
8972
+ archive: IconImportLoaderWithMetadata;
8973
+ axisX: IconImportLoaderWithMetadata;
8974
+ axisYLeft: IconImportLoaderWithMetadata;
8975
+ axisYRight: IconImportLoaderWithMetadata;
8976
+ auditbeatApp: IconImportLoaderWithMetadata;
8977
+ backgroundTask: IconImportLoaderWithMetadata;
8966
8978
  beaker: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/flask")>;
8967
- bell: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/bell")>;
8968
- bellSlash: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/bell_slash")>;
8969
- beta: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/beta")>;
8970
- bolt: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/bolt")>;
8979
+ bell: IconImportLoaderWithMetadata;
8980
+ bellSlash: IconImportLoaderWithMetadata;
8981
+ beta: IconImportLoaderWithMetadata;
8982
+ bolt: IconImportLoaderWithMetadata;
8971
8983
  boxesHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/boxes_vertical")>;
8972
8984
  boxesVertical: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/boxes_vertical")>;
8973
- branch: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/branch")>;
8974
- briefcase: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/briefcase")>;
8985
+ branch: IconImportLoaderWithMetadata;
8986
+ briefcase: IconImportLoaderWithMetadata;
8975
8987
  branchUser: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/branch_user")>;
8976
- broom: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/broom")>;
8977
- brush: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/brush")>;
8978
- bug: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/bug")>;
8979
- bulb: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/bulb")>;
8980
- bullseye: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/bullseye")>;
8981
- calendar: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/calendar")>;
8982
- canvasApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_canvas")>;
8983
- casesApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_cases")>;
8988
+ broom: IconImportLoaderWithMetadata;
8989
+ brush: IconImportLoaderWithMetadata;
8990
+ bug: IconImportLoaderWithMetadata;
8991
+ bulb: IconImportLoaderWithMetadata;
8992
+ bullseye: IconImportLoaderWithMetadata;
8993
+ calendar: IconImportLoaderWithMetadata;
8994
+ canvasApp: IconImportLoaderWithMetadata;
8995
+ casesApp: IconImportLoaderWithMetadata;
8984
8996
  changePointDetection: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_change_point")>;
8985
- chartChangePoint: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_change_point")>;
8986
- chartArea: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_area")>;
8987
- chartAreaStack: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_area_stack")>;
8988
- chartBarHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_bar_horizontal")>;
8989
- chartBarHorizontalStack: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_bar_horizontal_stack")>;
8990
- chartBarVertical: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_bar_vertical")>;
8991
- chartBarVerticalStack: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_bar_vertical_stack")>;
8992
- chartGauge: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_gauge")>;
8993
- chartHeatmap: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_heatmap")>;
8994
- chartLine: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_line")>;
8995
- chartPie: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_pie")>;
8996
- chartTagCloud: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_tag_cloud")>;
8997
- chartThreshold: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_threshold")>;
8998
- check: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/check")>;
8999
- checkCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/check_circle")>;
8997
+ chartChangePoint: IconImportLoaderWithMetadata;
8998
+ chartArea: IconImportLoaderWithMetadata;
8999
+ chartAreaStack: IconImportLoaderWithMetadata;
9000
+ chartBarHorizontal: IconImportLoaderWithMetadata;
9001
+ chartBarHorizontalStack: IconImportLoaderWithMetadata;
9002
+ chartBarVertical: IconImportLoaderWithMetadata;
9003
+ chartBarVerticalStack: IconImportLoaderWithMetadata;
9004
+ chartGauge: IconImportLoaderWithMetadata;
9005
+ chartHeatmap: IconImportLoaderWithMetadata;
9006
+ chartLine: IconImportLoaderWithMetadata;
9007
+ chartPie: IconImportLoaderWithMetadata;
9008
+ chartTagCloud: IconImportLoaderWithMetadata;
9009
+ chartThreshold: IconImportLoaderWithMetadata;
9010
+ check: IconImportLoaderWithMetadata;
9011
+ checkCircle: IconImportLoaderWithMetadata;
9000
9012
  checkInCircleFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/check_circle_fill")>;
9001
- checkCircleFill: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/check_circle_fill")>;
9013
+ checkCircleFill: IconImportLoaderWithMetadata;
9002
9014
  cheer: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/popper")>;
9003
- popper: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/popper")>;
9004
- classificationJob: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ml_classification_job")>;
9005
- clickLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/click_left")>;
9006
- clickRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/click_right")>;
9007
- clock: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/clock")>;
9008
- clockCounter: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/clock_counter")>;
9009
- clockControl: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/clock_control")>;
9010
- cloud: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cloud")>;
9015
+ popper: IconImportLoaderWithMetadata;
9016
+ classificationJob: IconImportLoaderWithMetadata;
9017
+ clickLeft: IconImportLoaderWithMetadata;
9018
+ clickRight: IconImportLoaderWithMetadata;
9019
+ clock: IconImportLoaderWithMetadata;
9020
+ clockCounter: IconImportLoaderWithMetadata;
9021
+ clockControl: IconImportLoaderWithMetadata;
9022
+ cloud: IconImportLoaderWithMetadata;
9011
9023
  cloudDrizzle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cloud_drizzle")>;
9012
9024
  cloudStormy: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cloud_stormy")>;
9013
9025
  cloudSunny: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cloud_sunny")>;
9014
- cluster: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cluster")>;
9015
- code: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/code")>;
9016
- codeApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_code")>;
9026
+ cluster: IconImportLoaderWithMetadata;
9027
+ code: IconImportLoaderWithMetadata;
9028
+ codeApp: IconImportLoaderWithMetadata;
9017
9029
  color: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/paint_bucket")>;
9018
- paintBucket: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/paint_bucket")>;
9019
- commandLine: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/command_line")>;
9020
- comment: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/comment")>;
9021
- compare: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/compare")>;
9030
+ paintBucket: IconImportLoaderWithMetadata;
9031
+ commandLine: IconImportLoaderWithMetadata;
9032
+ comment: IconImportLoaderWithMetadata;
9033
+ compare: IconImportLoaderWithMetadata;
9022
9034
  compute: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/processor")>;
9023
- processor: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/processor")>;
9035
+ processor: IconImportLoaderWithMetadata;
9024
9036
  console: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/command_line")>;
9025
- consoleApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_console")>;
9037
+ consoleApp: IconImportLoaderWithMetadata;
9026
9038
  container: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/container")>;
9027
9039
  continuityAbove: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/continuity_above")>;
9028
9040
  continuityAboveBelow: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/continuity_above_below")>;
9029
9041
  continuityBelow: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/continuity_below")>;
9030
9042
  continuityWithin: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/continuity_within")>;
9031
- contrast: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/contrast")>;
9043
+ contrast: IconImportLoaderWithMetadata;
9032
9044
  contrastHigh: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/contrast_fill")>;
9033
- contrastFill: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/contrast_fill")>;
9034
- controls: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/controls")>;
9045
+ contrastFill: IconImportLoaderWithMetadata;
9046
+ controls: IconImportLoaderWithMetadata;
9035
9047
  controlsHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/controls")>;
9036
9048
  controlsVertical: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/controls")>;
9037
- copy: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/copy")>;
9049
+ copy: IconImportLoaderWithMetadata;
9038
9050
  copyClipboard: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/copy")>;
9039
- crossProjectSearch: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cross_project_search")>;
9040
- createAdvancedJob: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ml_create_advanced_job")>;
9041
- createGenericJob: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ml_create_generic_job")>;
9042
- createGeoJob: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ml_create_geo_job")>;
9043
- createMultiMetricJob: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ml_create_multi_metric_job")>;
9044
- createPopulationJob: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ml_create_population_job")>;
9045
- createSingleMetricJob: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ml_create_single_metric_job")>;
9046
- cross: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cross")>;
9047
- crossClusterReplicationApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_cross_cluster_replication")>;
9051
+ crossProjectSearch: IconImportLoaderWithMetadata;
9052
+ createAdvancedJob: IconImportLoaderWithMetadata;
9053
+ createGenericJob: IconImportLoaderWithMetadata;
9054
+ createGeoJob: IconImportLoaderWithMetadata;
9055
+ createMultiMetricJob: IconImportLoaderWithMetadata;
9056
+ createPopulationJob: IconImportLoaderWithMetadata;
9057
+ createSingleMetricJob: IconImportLoaderWithMetadata;
9058
+ cross: IconImportLoaderWithMetadata;
9059
+ crossClusterReplicationApp: IconImportLoaderWithMetadata;
9048
9060
  crossInCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cross_circle")>;
9049
- crossCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/cross_circle")>;
9050
- crosshair: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/crosshair")>;
9061
+ crossCircle: IconImportLoaderWithMetadata;
9062
+ crosshair: IconImportLoaderWithMetadata;
9051
9063
  crosshairs: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/crosshair")>;
9052
9064
  currency: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/money")>;
9053
- money: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/money")>;
9065
+ money: IconImportLoaderWithMetadata;
9054
9066
  cut: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/scissors")>;
9055
- scissors: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/scissors")>;
9056
- dashboardApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_dashboard")>;
9057
- dashedCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/dashed_circle")>;
9058
- dataVisualizer: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ml_data_visualizer")>;
9059
- database: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/database")>;
9067
+ scissors: IconImportLoaderWithMetadata;
9068
+ dashboardApp: IconImportLoaderWithMetadata;
9069
+ dashedCircle: IconImportLoaderWithMetadata;
9070
+ dataVisualizer: IconImportLoaderWithMetadata;
9071
+ database: IconImportLoaderWithMetadata;
9060
9072
  desktop: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/display")>;
9061
- display: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/display")>;
9062
- devToolsApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_devtools")>;
9073
+ display: IconImportLoaderWithMetadata;
9074
+ devToolsApp: IconImportLoaderWithMetadata;
9063
9075
  diff: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/compare")>;
9064
- discoverApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_discover")>;
9065
- distributeHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/distribute_horizontal")>;
9066
- distributeVertical: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/distribute_vertical")>;
9067
- download: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/download")>;
9068
- drag: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/drag")>;
9069
- dragHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/drag_horizontal")>;
9070
- dragVertical: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/drag_vertical")>;
9076
+ discoverApp: IconImportLoaderWithMetadata;
9077
+ distributeHorizontal: IconImportLoaderWithMetadata;
9078
+ distributeVertical: IconImportLoaderWithMetadata;
9079
+ download: IconImportLoaderWithMetadata;
9080
+ drag: IconImportLoaderWithMetadata;
9081
+ dragHorizontal: IconImportLoaderWithMetadata;
9082
+ dragVertical: IconImportLoaderWithMetadata;
9071
9083
  discuss: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/comment")>;
9072
- document: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/document")>;
9084
+ document: IconImportLoaderWithMetadata;
9073
9085
  documentEdit: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/document_edit")>;
9074
- documentation: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/documentation")>;
9075
- documents: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/documents")>;
9076
- dot: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/dot")>;
9086
+ documentation: IconImportLoaderWithMetadata;
9087
+ documents: IconImportLoaderWithMetadata;
9088
+ dot: IconImportLoaderWithMetadata;
9077
9089
  dotInCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/dot_in_circle")>;
9078
9090
  doubleArrowLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_double_left")>;
9079
- chevronDoubleLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_double_left")>;
9091
+ chevronDoubleLeft: IconImportLoaderWithMetadata;
9080
9092
  doubleArrowRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_double_right")>;
9081
- chevronDoubleRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chevron_double_right")>;
9082
- ellipsis: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ellipsis")>;
9093
+ chevronDoubleRight: IconImportLoaderWithMetadata;
9094
+ ellipsis: IconImportLoaderWithMetadata;
9083
9095
  editorAlignCenter: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_align_center")>;
9084
- textAlignCenter: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_align_center")>;
9096
+ textAlignCenter: IconImportLoaderWithMetadata;
9085
9097
  editorAlignLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_align_left")>;
9086
- textAlignLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_align_left")>;
9098
+ textAlignLeft: IconImportLoaderWithMetadata;
9087
9099
  editorAlignRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_align_right")>;
9088
- textAlignRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_align_right")>;
9100
+ textAlignRight: IconImportLoaderWithMetadata;
9089
9101
  editorBold: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_bold")>;
9090
- textBold: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_bold")>;
9102
+ textBold: IconImportLoaderWithMetadata;
9091
9103
  editorChecklist: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/list_check")>;
9092
- listCheck: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/list_check")>;
9104
+ listCheck: IconImportLoaderWithMetadata;
9093
9105
  editorCodeBlock: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/code")>;
9094
9106
  editorComment: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/comment")>;
9095
9107
  editorDistributeHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_distribute_horizontal")>;
9096
9108
  editorDistributeVertical: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_distribute_vertical")>;
9097
9109
  editorHeading: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_heading")>;
9098
- textHeading: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_heading")>;
9110
+ textHeading: IconImportLoaderWithMetadata;
9099
9111
  editorItalic: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_italic")>;
9100
- textItalic: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_italic")>;
9112
+ textItalic: IconImportLoaderWithMetadata;
9101
9113
  editorItemAlignBottom: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_item_align_bottom")>;
9102
9114
  editorItemAlignCenter: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_item_align_center")>;
9103
9115
  editorItemAlignLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_item_align_left")>;
@@ -9106,344 +9118,344 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
9106
9118
  editorItemAlignTop: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_item_align_top")>;
9107
9119
  editorLink: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/link")>;
9108
9120
  editorOrderedList: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/list_number")>;
9109
- listNumber: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/list_number")>;
9121
+ listNumber: IconImportLoaderWithMetadata;
9110
9122
  editorPositionBottomLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_position_bottom_left")>;
9111
9123
  editorPositionBottomRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_position_bottom_right")>;
9112
9124
  editorPositionTopLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_position_top_left")>;
9113
9125
  editorPositionTopRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/editor_position_top_right")>;
9114
9126
  editorRedo: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/redo")>;
9115
- redo: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/redo")>;
9127
+ redo: IconImportLoaderWithMetadata;
9116
9128
  editorStrike: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_strike")>;
9117
- textStrike: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_strike")>;
9129
+ textStrike: IconImportLoaderWithMetadata;
9118
9130
  editorTable: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table")>;
9119
- table: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table")>;
9131
+ table: IconImportLoaderWithMetadata;
9120
9132
  editorUnderline: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_underline")>;
9121
- textUnderline: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text_underline")>;
9133
+ textUnderline: IconImportLoaderWithMetadata;
9122
9134
  editorUndo: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/undo")>;
9123
- undo: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/undo")>;
9135
+ undo: IconImportLoaderWithMetadata;
9124
9136
  editorUnorderedList: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/list_bullet")>;
9125
- listBullet: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/list_bullet")>;
9137
+ listBullet: IconImportLoaderWithMetadata;
9126
9138
  email: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/mail")>;
9127
- mail: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/mail")>;
9128
- empty: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/empty")>;
9129
- emsApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_ems")>;
9130
- endpoint: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/endpoint")>;
9139
+ mail: IconImportLoaderWithMetadata;
9140
+ empty: IconImportLoaderWithMetadata;
9141
+ emsApp: IconImportLoaderWithMetadata;
9142
+ endpoint: IconImportLoaderWithMetadata;
9131
9143
  eql: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query")>;
9132
- query: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query")>;
9133
- eraser: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/eraser")>;
9134
- error: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/error")>;
9144
+ query: IconImportLoaderWithMetadata;
9145
+ eraser: IconImportLoaderWithMetadata;
9146
+ error: IconImportLoaderWithMetadata;
9135
9147
  errorFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/error_fill")>;
9136
- errorFill: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/error_fill")>;
9148
+ errorFill: IconImportLoaderWithMetadata;
9137
9149
  esqlVis: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/esql_vis")>;
9138
9150
  exit: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/log_out")>;
9139
- logOut: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/log_out")>;
9151
+ logOut: IconImportLoaderWithMetadata;
9140
9152
  expand: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/maximize")>;
9141
- maximize: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/maximize")>;
9153
+ maximize: IconImportLoaderWithMetadata;
9142
9154
  expandMini: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/maximize")>;
9143
9155
  export: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/upload")>;
9144
9156
  exportAction: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/upload")>;
9145
- upload: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/upload")>;
9146
- external: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/external")>;
9147
- eye: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/eye")>;
9157
+ upload: IconImportLoaderWithMetadata;
9158
+ external: IconImportLoaderWithMetadata;
9159
+ eye: IconImportLoaderWithMetadata;
9148
9160
  eyeClosed: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/eye_slash")>;
9149
- eyeSlash: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/eye_slash")>;
9150
- faceHappy: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/face_happy")>;
9151
- faceNeutral: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/face_neutral")>;
9152
- faceSad: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/face_sad")>;
9161
+ eyeSlash: IconImportLoaderWithMetadata;
9162
+ faceHappy: IconImportLoaderWithMetadata;
9163
+ faceNeutral: IconImportLoaderWithMetadata;
9164
+ faceSad: IconImportLoaderWithMetadata;
9153
9165
  fieldStatistics: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_info")>;
9154
- tableInfo: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_info")>;
9155
- filebeatApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_filebeat")>;
9156
- filter: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/filter")>;
9157
- filterExclude: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/filter_exclude")>;
9158
- filterIgnore: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/filter_ignore")>;
9159
- filterInclude: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/filter_include")>;
9166
+ tableInfo: IconImportLoaderWithMetadata;
9167
+ filebeatApp: IconImportLoaderWithMetadata;
9168
+ filter: IconImportLoaderWithMetadata;
9169
+ filterExclude: IconImportLoaderWithMetadata;
9170
+ filterIgnore: IconImportLoaderWithMetadata;
9171
+ filterInclude: IconImportLoaderWithMetadata;
9160
9172
  filterInCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/filter_in_circle")>;
9161
- flask: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/flask")>;
9162
- flag: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/flag")>;
9163
- fleetApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_agent")>;
9173
+ flask: IconImportLoaderWithMetadata;
9174
+ flag: IconImportLoaderWithMetadata;
9175
+ fleetApp: IconImportLoaderWithMetadata;
9164
9176
  fold: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/fold")>;
9165
9177
  folder: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/folder_close")>;
9166
9178
  folderClosed: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/folder_close")>;
9167
- folderClose: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/folder_close")>;
9179
+ folderClose: IconImportLoaderWithMetadata;
9168
9180
  folderCheck: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/folder_check")>;
9169
9181
  folderExclamation: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/folder_exclamation")>;
9170
- folderOpen: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/folder_open")>;
9182
+ folderOpen: IconImportLoaderWithMetadata;
9171
9183
  folderOpened: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/folder_open")>;
9172
9184
  frameNext: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/frame_next")>;
9173
9185
  framePrevious: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/frame_previous")>;
9174
- fullScreen: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/full_screen")>;
9175
- fullScreenExit: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/full_screen_exit")>;
9186
+ fullScreen: IconImportLoaderWithMetadata;
9187
+ fullScreenExit: IconImportLoaderWithMetadata;
9176
9188
  function: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/function")>;
9177
- gear: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/gear")>;
9178
- gisApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_gis")>;
9189
+ gear: IconImportLoaderWithMetadata;
9190
+ gisApp: IconImportLoaderWithMetadata;
9179
9191
  glasses: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/read_only")>;
9180
- globe: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/globe")>;
9192
+ globe: IconImportLoaderWithMetadata;
9181
9193
  grab: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/drag_vertical")>;
9182
9194
  grabHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/drag_horizontal")>;
9183
9195
  grabOmnidirectional: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/grab_omnidirectional")>;
9184
- gradient: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/gradient")>;
9185
- graphApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_graph")>;
9186
- grid: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/grid")>;
9187
- grokApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_grok")>;
9188
- heart: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/heart")>;
9189
- heartbeatApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_heartbeat")>;
9196
+ gradient: IconImportLoaderWithMetadata;
9197
+ graphApp: IconImportLoaderWithMetadata;
9198
+ grid: IconImportLoaderWithMetadata;
9199
+ grokApp: IconImportLoaderWithMetadata;
9200
+ heart: IconImportLoaderWithMetadata;
9201
+ heartbeatApp: IconImportLoaderWithMetadata;
9190
9202
  heatmap: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_heatmap")>;
9191
9203
  help: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/help")>;
9192
- home: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/home")>;
9193
- hourglass: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/hourglass")>;
9194
- if: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/if")>;
9195
- info: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/info")>;
9196
- image: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/image")>;
9204
+ home: IconImportLoaderWithMetadata;
9205
+ hourglass: IconImportLoaderWithMetadata;
9206
+ if: IconImportLoaderWithMetadata;
9207
+ info: IconImportLoaderWithMetadata;
9208
+ image: IconImportLoaderWithMetadata;
9197
9209
  importAction: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/download")>;
9198
9210
  index: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/index")>;
9199
- indexClose: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/index_close")>;
9200
- indexEdit: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/index_edit")>;
9211
+ indexClose: IconImportLoaderWithMetadata;
9212
+ indexEdit: IconImportLoaderWithMetadata;
9201
9213
  indexFlush: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_threshold")>;
9202
- indexManagementApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_index_management")>;
9214
+ indexManagementApp: IconImportLoaderWithMetadata;
9203
9215
  indexMapping: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/mapping")>;
9204
- mapping: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/mapping")>;
9205
- indexOpen: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/index_open")>;
9206
- indexPatternApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_index_pattern")>;
9207
- indexRollupApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_index_rollup")>;
9208
- indexRuntime: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/index_runtime")>;
9209
- indexSettings: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/index_settings")>;
9216
+ mapping: IconImportLoaderWithMetadata;
9217
+ indexOpen: IconImportLoaderWithMetadata;
9218
+ indexPatternApp: IconImportLoaderWithMetadata;
9219
+ indexRollupApp: IconImportLoaderWithMetadata;
9220
+ indexRuntime: IconImportLoaderWithMetadata;
9221
+ indexSettings: IconImportLoaderWithMetadata;
9210
9222
  indexTemporary: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_time")>;
9211
- tableTime: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_time")>;
9212
- infinity: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/infinity")>;
9213
- inputOutput: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/input_output")>;
9214
- inspect: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/inspect")>;
9223
+ tableTime: IconImportLoaderWithMetadata;
9224
+ infinity: IconImportLoaderWithMetadata;
9225
+ inputOutput: IconImportLoaderWithMetadata;
9226
+ inspect: IconImportLoaderWithMetadata;
9215
9227
  invert: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/contrast")>;
9216
9228
  ip: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ip")>;
9217
- key: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/key")>;
9218
- keyboard: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/keyboard")>;
9229
+ key: IconImportLoaderWithMetadata;
9230
+ keyboard: IconImportLoaderWithMetadata;
9219
9231
  kqlField: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query_field")>;
9220
- queryField: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query_field")>;
9232
+ queryField: IconImportLoaderWithMetadata;
9221
9233
  kqlFunction: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/kql_function")>;
9222
9234
  kqlOperand: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query_operand")>;
9223
- queryOperand: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query_operand")>;
9235
+ queryOperand: IconImportLoaderWithMetadata;
9224
9236
  kqlSelector: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query_selector")>;
9225
- querySelector: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query_selector")>;
9237
+ querySelector: IconImportLoaderWithMetadata;
9226
9238
  kqlValue: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query_value")>;
9227
- queryValue: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/query_value")>;
9239
+ queryValue: IconImportLoaderWithMetadata;
9228
9240
  kubernetesNode: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/kubernetes_node")>;
9229
- kubernetesPod: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/kubernetes_pod")>;
9241
+ kubernetesPod: IconImportLoaderWithMetadata;
9230
9242
  launch: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/rocket")>;
9231
- rocket: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/rocket")>;
9232
- layers: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/layers")>;
9233
- lensApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_lens")>;
9243
+ rocket: IconImportLoaderWithMetadata;
9244
+ layers: IconImportLoaderWithMetadata;
9245
+ lensApp: IconImportLoaderWithMetadata;
9234
9246
  lettering: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text")>;
9235
- text: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/text")>;
9236
- lineBreak: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_break")>;
9237
- lineBreakSlash: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_break_slash")>;
9238
- lineDash: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_dash")>;
9247
+ text: IconImportLoaderWithMetadata;
9248
+ lineBreak: IconImportLoaderWithMetadata;
9249
+ lineBreakSlash: IconImportLoaderWithMetadata;
9250
+ lineDash: IconImportLoaderWithMetadata;
9239
9251
  lineDashed: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_dash")>;
9240
- lineDot: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_dot")>;
9252
+ lineDot: IconImportLoaderWithMetadata;
9241
9253
  lineDotted: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_dot")>;
9242
- lineSolid: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_solid")>;
9243
- link: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/link")>;
9244
- linkSlash: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/link_slash")>;
9254
+ lineSolid: IconImportLoaderWithMetadata;
9255
+ link: IconImportLoaderWithMetadata;
9256
+ linkSlash: IconImportLoaderWithMetadata;
9245
9257
  list: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/list_bullet")>;
9246
9258
  listAdd: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus_circle")>;
9247
- lock: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/lock")>;
9248
- lockOpen: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/lock_open")>;
9259
+ lock: IconImportLoaderWithMetadata;
9260
+ lockOpen: IconImportLoaderWithMetadata;
9249
9261
  logPatternAnalysis: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/pattern")>;
9250
- pattern: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/pattern")>;
9262
+ pattern: IconImportLoaderWithMetadata;
9251
9263
  logRateAnalysis: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/log_rate_analysis")>;
9252
- logoAWS: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_aws")>;
9253
- logoAWSMono: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_aws_mono")>;
9254
- logoAerospike: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_aerospike")>;
9255
- logoApache: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_apache")>;
9256
- logoAppSearch: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_app_search")>;
9257
- logoAzure: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_azure")>;
9258
- logoAzureMono: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_azure_mono")>;
9259
- logoBeats: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_beats")>;
9260
- logoBusinessAnalytics: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_business_analytics")>;
9261
- logoCeph: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_ceph")>;
9262
- logoCloud: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_cloud")>;
9263
- logoCloudEnterprise: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_cloud_ece")>;
9264
- logoCode: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_code")>;
9265
- logoCodesandbox: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_codesandbox")>;
9266
- logoCouchbase: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_couchbase")>;
9267
- logoDocker: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_docker")>;
9268
- logoDropwizard: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_dropwizard")>;
9269
- logoElastic: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_elastic")>;
9270
- logoElasticStack: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_elastic_stack")>;
9271
- logoElasticsearch: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_elasticsearch")>;
9272
- logoEnterpriseSearch: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_enterprise_search")>;
9273
- logoEtcd: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_etcd")>;
9274
- logoGCP: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_gcp")>;
9275
- logoGCPMono: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_gcp_mono")>;
9276
- logoGithub: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_github")>;
9277
- logoGmail: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_gmail")>;
9278
- logoGolang: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_golang")>;
9279
- logoGoogleG: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_google_g")>;
9280
- logoHAproxy: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_haproxy")>;
9281
- logoIBM: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_ibm")>;
9282
- logoIBMMono: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_ibm_mono")>;
9283
- logoKafka: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_kafka")>;
9284
- logoKibana: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_kibana")>;
9285
- logoKubernetes: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_kubernetes")>;
9286
- logoLogging: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_logging")>;
9287
- logoLogstash: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_logstash")>;
9288
- logoMaps: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_maps")>;
9289
- logoMemcached: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_memcached")>;
9290
- logoMetrics: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_metrics")>;
9291
- logoMongodb: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_mongodb")>;
9292
- logoMySQL: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_mysql")>;
9293
- logoNginx: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_nginx")>;
9294
- logoObservability: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_observability")>;
9295
- logoOsquery: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_osquery")>;
9296
- logoPhp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_php")>;
9297
- logoPostgres: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_postgres")>;
9298
- logoPrometheus: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_prometheus")>;
9299
- logoRabbitmq: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_rabbitmq")>;
9300
- logoRedis: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_redis")>;
9301
- logoSecurity: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_security")>;
9302
- logoSiteSearch: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_site_search")>;
9303
- logoSketch: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_sketch")>;
9304
- logoSlack: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_slack")>;
9305
- logoUptime: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_uptime")>;
9306
- logoVectorDB: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_vector_db")>;
9307
- logoVulnerabilityManagement: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_vulnerability_management")>;
9308
- logoWebhook: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_webhook")>;
9309
- logoWindows: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_windows")>;
9310
- logoWorkplaceSearch: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logo_workplace_search")>;
9311
- logsApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_logs")>;
9264
+ logoAWS: IconImportLoaderWithMetadata;
9265
+ logoAWSMono: IconImportLoaderWithMetadata;
9266
+ logoAerospike: IconImportLoaderWithMetadata;
9267
+ logoApache: IconImportLoaderWithMetadata;
9268
+ logoAppSearch: IconImportLoaderWithMetadata;
9269
+ logoAzure: IconImportLoaderWithMetadata;
9270
+ logoAzureMono: IconImportLoaderWithMetadata;
9271
+ logoBeats: IconImportLoaderWithMetadata;
9272
+ logoBusinessAnalytics: IconImportLoaderWithMetadata;
9273
+ logoCeph: IconImportLoaderWithMetadata;
9274
+ logoCloud: IconImportLoaderWithMetadata;
9275
+ logoCloudEnterprise: IconImportLoaderWithMetadata;
9276
+ logoCode: IconImportLoaderWithMetadata;
9277
+ logoCodesandbox: IconImportLoaderWithMetadata;
9278
+ logoCouchbase: IconImportLoaderWithMetadata;
9279
+ logoDocker: IconImportLoaderWithMetadata;
9280
+ logoDropwizard: IconImportLoaderWithMetadata;
9281
+ logoElastic: IconImportLoaderWithMetadata;
9282
+ logoElasticStack: IconImportLoaderWithMetadata;
9283
+ logoElasticsearch: IconImportLoaderWithMetadata;
9284
+ logoEnterpriseSearch: IconImportLoaderWithMetadata;
9285
+ logoEtcd: IconImportLoaderWithMetadata;
9286
+ logoGCP: IconImportLoaderWithMetadata;
9287
+ logoGCPMono: IconImportLoaderWithMetadata;
9288
+ logoGithub: IconImportLoaderWithMetadata;
9289
+ logoGmail: IconImportLoaderWithMetadata;
9290
+ logoGolang: IconImportLoaderWithMetadata;
9291
+ logoGoogleG: IconImportLoaderWithMetadata;
9292
+ logoHAproxy: IconImportLoaderWithMetadata;
9293
+ logoIBM: IconImportLoaderWithMetadata;
9294
+ logoIBMMono: IconImportLoaderWithMetadata;
9295
+ logoKafka: IconImportLoaderWithMetadata;
9296
+ logoKibana: IconImportLoaderWithMetadata;
9297
+ logoKubernetes: IconImportLoaderWithMetadata;
9298
+ logoLogging: IconImportLoaderWithMetadata;
9299
+ logoLogstash: IconImportLoaderWithMetadata;
9300
+ logoMaps: IconImportLoaderWithMetadata;
9301
+ logoMemcached: IconImportLoaderWithMetadata;
9302
+ logoMetrics: IconImportLoaderWithMetadata;
9303
+ logoMongodb: IconImportLoaderWithMetadata;
9304
+ logoMySQL: IconImportLoaderWithMetadata;
9305
+ logoNginx: IconImportLoaderWithMetadata;
9306
+ logoObservability: IconImportLoaderWithMetadata;
9307
+ logoOsquery: IconImportLoaderWithMetadata;
9308
+ logoPhp: IconImportLoaderWithMetadata;
9309
+ logoPostgres: IconImportLoaderWithMetadata;
9310
+ logoPrometheus: IconImportLoaderWithMetadata;
9311
+ logoRabbitmq: IconImportLoaderWithMetadata;
9312
+ logoRedis: IconImportLoaderWithMetadata;
9313
+ logoSecurity: IconImportLoaderWithMetadata;
9314
+ logoSiteSearch: IconImportLoaderWithMetadata;
9315
+ logoSketch: IconImportLoaderWithMetadata;
9316
+ logoSlack: IconImportLoaderWithMetadata;
9317
+ logoUptime: IconImportLoaderWithMetadata;
9318
+ logoVectorDB: IconImportLoaderWithMetadata;
9319
+ logoVulnerabilityManagement: IconImportLoaderWithMetadata;
9320
+ logoWebhook: IconImportLoaderWithMetadata;
9321
+ logoWindows: IconImportLoaderWithMetadata;
9322
+ logoWorkplaceSearch: IconImportLoaderWithMetadata;
9323
+ logsApp: IconImportLoaderWithMetadata;
9312
9324
  logstashFilter: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logstash_filter")>;
9313
9325
  logstashIf: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/if")>;
9314
9326
  logstashInput: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logstash_input")>;
9315
9327
  logstashOutput: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/logstash_output")>;
9316
9328
  logstashQueue: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/queue")>;
9317
- queue: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/queue")>;
9318
- machineLearningApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_ml")>;
9329
+ queue: IconImportLoaderWithMetadata;
9330
+ machineLearningApp: IconImportLoaderWithMetadata;
9319
9331
  magnet: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnet")>;
9320
- magnify: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnify")>;
9321
- magnifyExclamation: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnify_exclamation")>;
9322
- magnifyMinus: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnify_minus")>;
9323
- magnifyPlus: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnify_plus")>;
9332
+ magnify: IconImportLoaderWithMetadata;
9333
+ magnifyExclamation: IconImportLoaderWithMetadata;
9334
+ magnifyMinus: IconImportLoaderWithMetadata;
9335
+ magnifyPlus: IconImportLoaderWithMetadata;
9324
9336
  magnifyWithExclamation: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnify_with_exclamation")>;
9325
9337
  magnifyWithMinus: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnify_with_minus")>;
9326
9338
  magnifyWithPlus: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnify_with_plus")>;
9327
- managementApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_management")>;
9328
- map: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/map")>;
9339
+ managementApp: IconImportLoaderWithMetadata;
9340
+ map: IconImportLoaderWithMetadata;
9329
9341
  mapMarker: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/waypoint")>;
9330
- waypoint: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/waypoint")>;
9331
- megaphone: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/megaphone")>;
9342
+ waypoint: IconImportLoaderWithMetadata;
9343
+ megaphone: IconImportLoaderWithMetadata;
9332
9344
  memory: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/memory")>;
9333
- menu: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/menu")>;
9345
+ menu: IconImportLoaderWithMetadata;
9334
9346
  menuDown: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/menu_down")>;
9335
- menuLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/menu_left")>;
9336
- menuRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/menu_right")>;
9347
+ menuLeft: IconImportLoaderWithMetadata;
9348
+ menuRight: IconImportLoaderWithMetadata;
9337
9349
  menuUp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/menu_up")>;
9338
- merge: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/merge")>;
9339
- metricbeatApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_metricbeat")>;
9340
- metricsApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_metrics")>;
9341
- minimize: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/minimize")>;
9342
- minus: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/minus")>;
9343
- minusCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/minus_circle")>;
9350
+ merge: IconImportLoaderWithMetadata;
9351
+ metricbeatApp: IconImportLoaderWithMetadata;
9352
+ metricsApp: IconImportLoaderWithMetadata;
9353
+ minimize: IconImportLoaderWithMetadata;
9354
+ minus: IconImportLoaderWithMetadata;
9355
+ minusCircle: IconImportLoaderWithMetadata;
9344
9356
  minusInCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/minus_circle")>;
9345
9357
  minusInCircleFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/minus_circle")>;
9346
9358
  minusInSquare: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/minus_square")>;
9347
- minusSquare: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/minus_square")>;
9359
+ minusSquare: IconImportLoaderWithMetadata;
9348
9360
  mobile: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/mobile")>;
9349
- monitoringApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_monitoring")>;
9350
- moon: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/moon")>;
9351
- move: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/move")>;
9361
+ monitoringApp: IconImportLoaderWithMetadata;
9362
+ moon: IconImportLoaderWithMetadata;
9363
+ move: IconImportLoaderWithMetadata;
9352
9364
  namespace: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/namespace")>;
9353
- nested: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/nested")>;
9365
+ nested: IconImportLoaderWithMetadata;
9354
9366
  newChat: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus_circle")>;
9355
9367
  node: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/vector_triangle")>;
9356
- vectorTriangle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/vector_triangle")>;
9357
- notebookApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_notebook")>;
9358
- number: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/number")>;
9368
+ vectorTriangle: IconImportLoaderWithMetadata;
9369
+ notebookApp: IconImportLoaderWithMetadata;
9370
+ number: IconImportLoaderWithMetadata;
9359
9371
  offline: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/wifi_slash")>;
9360
- wifiSlash: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/wifi_slash")>;
9372
+ wifiSlash: IconImportLoaderWithMetadata;
9361
9373
  online: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/wifi")>;
9362
- wifi: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/wifi")>;
9363
- outlierDetectionJob: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ml_outlier_detection_job")>;
9364
- package: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/package")>;
9365
- packetbeatApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_packetbeat")>;
9374
+ wifi: IconImportLoaderWithMetadata;
9375
+ outlierDetectionJob: IconImportLoaderWithMetadata;
9376
+ package: IconImportLoaderWithMetadata;
9377
+ packetbeatApp: IconImportLoaderWithMetadata;
9366
9378
  pageSelect: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/page_select")>;
9367
- pagesSelect: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/pages_select")>;
9368
- palette: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/palette")>;
9369
- paperClip: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/paper_clip")>;
9370
- partial: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/partial")>;
9371
- pause: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/pause")>;
9379
+ pagesSelect: IconImportLoaderWithMetadata;
9380
+ palette: IconImportLoaderWithMetadata;
9381
+ paperClip: IconImportLoaderWithMetadata;
9382
+ partial: IconImportLoaderWithMetadata;
9383
+ pause: IconImportLoaderWithMetadata;
9372
9384
  payment: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/payment")>;
9373
- pencil: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/pencil")>;
9374
- percent: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/percent")>;
9375
- pin: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/pin")>;
9376
- pinFill: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/pin_fill")>;
9385
+ pencil: IconImportLoaderWithMetadata;
9386
+ percent: IconImportLoaderWithMetadata;
9387
+ pin: IconImportLoaderWithMetadata;
9388
+ pinFill: IconImportLoaderWithMetadata;
9377
9389
  pinFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/pin_fill")>;
9378
9390
  pipeBreaks: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_break")>;
9379
- pipelineApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_pipeline")>;
9391
+ pipelineApp: IconImportLoaderWithMetadata;
9380
9392
  pipeNoBreaks: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/line_break_slash")>;
9381
- pivot: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/pivot")>;
9382
- play: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/play")>;
9393
+ pivot: IconImportLoaderWithMetadata;
9394
+ play: IconImportLoaderWithMetadata;
9383
9395
  playFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/play_filled")>;
9384
9396
  plugs: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plugs")>;
9385
- plus: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus")>;
9386
- plusCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus_circle")>;
9397
+ plus: IconImportLoaderWithMetadata;
9398
+ plusCircle: IconImportLoaderWithMetadata;
9387
9399
  plusInCircle: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus_circle")>;
9388
9400
  plusInCircleFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus_circle")>;
9389
9401
  plusInSquare: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus_square")>;
9390
- plusSquare: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/plus_square")>;
9402
+ plusSquare: IconImportLoaderWithMetadata;
9391
9403
  popout: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/external")>;
9392
- presentation: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/presentation")>;
9404
+ presentation: IconImportLoaderWithMetadata;
9393
9405
  productRobot: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_agent")>;
9394
- productAgent: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_agent")>;
9395
- productCloudInfra: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_cloud_infra")>;
9396
- productDashboard: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_dashboard")>;
9397
- productDiscover: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_discover")>;
9398
- productML: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_ml")>;
9399
- productStreamsClassic: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_streams_classic")>;
9400
- productStreamsWired: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_streams_wired")>;
9406
+ productAgent: IconImportLoaderWithMetadata;
9407
+ productCloudInfra: IconImportLoaderWithMetadata;
9408
+ productDashboard: IconImportLoaderWithMetadata;
9409
+ productDiscover: IconImportLoaderWithMetadata;
9410
+ productML: IconImportLoaderWithMetadata;
9411
+ productStreamsClassic: IconImportLoaderWithMetadata;
9412
+ productStreamsWired: IconImportLoaderWithMetadata;
9401
9413
  push: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/send")>;
9402
- send: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/send")>;
9403
- question: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/question")>;
9404
- quote: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/quote")>;
9405
- radar: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/radar")>;
9406
- readOnly: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/read_only")>;
9407
- recentlyViewedApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_recently_viewed")>;
9408
- refresh: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/refresh")>;
9409
- regressionJob: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/ml_regression_job")>;
9410
- reporter: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/reporter")>;
9411
- reportingApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_reporting")>;
9412
- return: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/return")>;
9414
+ send: IconImportLoaderWithMetadata;
9415
+ question: IconImportLoaderWithMetadata;
9416
+ quote: IconImportLoaderWithMetadata;
9417
+ radar: IconImportLoaderWithMetadata;
9418
+ readOnly: IconImportLoaderWithMetadata;
9419
+ recentlyViewedApp: IconImportLoaderWithMetadata;
9420
+ refresh: IconImportLoaderWithMetadata;
9421
+ regressionJob: IconImportLoaderWithMetadata;
9422
+ reporter: IconImportLoaderWithMetadata;
9423
+ reportingApp: IconImportLoaderWithMetadata;
9424
+ return: IconImportLoaderWithMetadata;
9413
9425
  returnKey: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/return")>;
9414
- save: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/save")>;
9415
- savedObjectsApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_saved_objects")>;
9426
+ save: IconImportLoaderWithMetadata;
9427
+ savedObjectsApp: IconImportLoaderWithMetadata;
9416
9428
  scale: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/scale")>;
9417
9429
  search: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/magnify")>;
9418
- searchProfilerApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_search_profiler")>;
9419
- section: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/section")>;
9420
- securityAnalyticsApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_security_analytics")>;
9421
- securityApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_security")>;
9430
+ searchProfilerApp: IconImportLoaderWithMetadata;
9431
+ section: IconImportLoaderWithMetadata;
9432
+ securityAnalyticsApp: IconImportLoaderWithMetadata;
9433
+ securityApp: IconImportLoaderWithMetadata;
9422
9434
  securitySignal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/security_signal")>;
9423
9435
  securitySignalDetected: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/security_signal_detected")>;
9424
9436
  securitySignalResolved: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/security_signal_resolved")>;
9425
- server: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/server")>;
9437
+ server: IconImportLoaderWithMetadata;
9426
9438
  sessionViewer: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/session_viewer")>;
9427
- shard: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/shard")>;
9428
- share: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/share")>;
9429
- significantEvents: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/significant_events")>;
9439
+ shard: IconImportLoaderWithMetadata;
9440
+ share: IconImportLoaderWithMetadata;
9441
+ significantEvents: IconImportLoaderWithMetadata;
9430
9442
  singleMetricViewer: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/single_metric_viewer")>;
9431
- snowflake: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/snowflake")>;
9432
- sortAscending: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/sort_ascending")>;
9433
- sortDescending: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/sort_descending")>;
9434
- sortDown: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/sort_down")>;
9435
- sortLeft: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/sort_left")>;
9436
- sortRight: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/sort_right")>;
9437
- sortUp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/sort_up")>;
9438
- sortable: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/sortable")>;
9443
+ snowflake: IconImportLoaderWithMetadata;
9444
+ sortAscending: IconImportLoaderWithMetadata;
9445
+ sortDescending: IconImportLoaderWithMetadata;
9446
+ sortDown: IconImportLoaderWithMetadata;
9447
+ sortLeft: IconImportLoaderWithMetadata;
9448
+ sortRight: IconImportLoaderWithMetadata;
9449
+ sortUp: IconImportLoaderWithMetadata;
9450
+ sortable: IconImportLoaderWithMetadata;
9439
9451
  spaces: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/spaces")>;
9440
- spacesApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_spaces")>;
9441
- sparkles: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/sparkles")>;
9442
- sqlApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_sql")>;
9443
- star: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star")>;
9452
+ spacesApp: IconImportLoaderWithMetadata;
9453
+ sparkles: IconImportLoaderWithMetadata;
9454
+ sqlApp: IconImportLoaderWithMetadata;
9455
+ star: IconImportLoaderWithMetadata;
9444
9456
  starEmpty: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star")>;
9445
9457
  starEmptySpace: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_empty_space")>;
9446
- starFill: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_fill")>;
9458
+ starFill: IconImportLoaderWithMetadata;
9447
9459
  starFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_fill")>;
9448
9460
  starFillSpace: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_fill_space")>;
9449
9461
  starFilledSpace: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_fill_space")>;
@@ -9454,56 +9466,56 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
9454
9466
  starPlusFill: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_plus_fill")>;
9455
9467
  starPlusFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/star_plus_fill")>;
9456
9468
  stats: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/stats")>;
9457
- stop: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/stop")>;
9469
+ stop: IconImportLoaderWithMetadata;
9458
9470
  stopFill: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/stop_fill")>;
9459
9471
  stopFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/stop_fill")>;
9460
9472
  stopSlash: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/stop_slash")>;
9461
- storage: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/storage")>;
9473
+ storage: IconImportLoaderWithMetadata;
9462
9474
  streamsClassic: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_streams_classic")>;
9463
9475
  streamsWired: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/product_streams_wired")>;
9464
9476
  string: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/string")>;
9465
9477
  submodule: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/merge")>;
9466
- sun: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/sun")>;
9478
+ sun: IconImportLoaderWithMetadata;
9467
9479
  swatchInput: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/swatch_input")>;
9468
- symlink: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/symlink")>;
9480
+ symlink: IconImportLoaderWithMetadata;
9469
9481
  tableDensityCompact: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_density_high")>;
9470
- tableDensityHigh: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_density_high")>;
9482
+ tableDensityHigh: IconImportLoaderWithMetadata;
9471
9483
  tableDensityExpanded: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_density_low")>;
9472
- tableDensityLow: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_density_low")>;
9484
+ tableDensityLow: IconImportLoaderWithMetadata;
9473
9485
  tableDensityNormal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table")>;
9474
9486
  tableOfContents: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table_of_contents")>;
9475
- tag: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/tag")>;
9487
+ tag: IconImportLoaderWithMetadata;
9476
9488
  tear: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/tear")>;
9477
9489
  temperature: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/thermometer")>;
9478
- thermometer: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/thermometer")>;
9479
- thumbDown: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/thumb_down")>;
9480
- thumbUp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/thumb_up")>;
9481
- timeline: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/timeline")>;
9482
- timelineWithArrow: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/timeline_with_arrow")>;
9483
- timelionApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_timelion")>;
9490
+ thermometer: IconImportLoaderWithMetadata;
9491
+ thumbDown: IconImportLoaderWithMetadata;
9492
+ thumbUp: IconImportLoaderWithMetadata;
9493
+ timeline: IconImportLoaderWithMetadata;
9494
+ timelineWithArrow: IconImportLoaderWithMetadata;
9495
+ timelionApp: IconImportLoaderWithMetadata;
9484
9496
  timeRefresh: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/refresh_time")>;
9485
- refreshTime: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/refresh_time")>;
9497
+ refreshTime: IconImportLoaderWithMetadata;
9486
9498
  timeslider: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/clock_control")>;
9487
9499
  training: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/presentation")>;
9488
- transitionBottomIn: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/transition_bottom_in")>;
9489
- transitionBottomOut: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/transition_bottom_out")>;
9490
- transitionLeftIn: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/transition_left_in")>;
9491
- transitionLeftOut: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/transition_left_out")>;
9492
- transitionTopIn: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/transition_top_in")>;
9493
- transitionTopOut: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/transition_top_out")>;
9494
- trash: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/trash")>;
9500
+ transitionBottomIn: IconImportLoaderWithMetadata;
9501
+ transitionBottomOut: IconImportLoaderWithMetadata;
9502
+ transitionLeftIn: IconImportLoaderWithMetadata;
9503
+ transitionLeftOut: IconImportLoaderWithMetadata;
9504
+ transitionTopIn: IconImportLoaderWithMetadata;
9505
+ transitionTopOut: IconImportLoaderWithMetadata;
9506
+ trash: IconImportLoaderWithMetadata;
9495
9507
  unfold: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/unfold")>;
9496
9508
  unlink: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/link_slash")>;
9497
- upgradeAssistantApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_upgrade_assistant")>;
9498
- uptimeApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_uptime")>;
9499
- user: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/user")>;
9509
+ upgradeAssistantApp: IconImportLoaderWithMetadata;
9510
+ uptimeApp: IconImportLoaderWithMetadata;
9511
+ user: IconImportLoaderWithMetadata;
9500
9512
  userAvatar: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/user")>;
9501
- users: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/users")>;
9502
- usersRolesApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_users_roles")>;
9503
- unarchive: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/unarchive")>;
9513
+ users: IconImportLoaderWithMetadata;
9514
+ usersRolesApp: IconImportLoaderWithMetadata;
9515
+ unarchive: IconImportLoaderWithMetadata;
9504
9516
  vector: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/vector_square")>;
9505
- vectorSquare: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/vector_square")>;
9506
- videoPlayer: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/video_player")>;
9517
+ vectorSquare: IconImportLoaderWithMetadata;
9518
+ videoPlayer: IconImportLoaderWithMetadata;
9507
9519
  visArea: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_area")>;
9508
9520
  visAreaStacked: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_area_stack")>;
9509
9521
  visBarHorizontal: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_bar_horizontal")>;
@@ -9516,7 +9528,7 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
9516
9528
  visMapCoordinate: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/waypoint")>;
9517
9529
  visMapRegion: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/map")>;
9518
9530
  visMetric: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_metric")>;
9519
- chartMetric: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_metric")>;
9531
+ chartMetric: IconImportLoaderWithMetadata;
9520
9532
  visPie: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_pie")>;
9521
9533
  visTable: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/table")>;
9522
9534
  visTagCloud: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/chart_tag_cloud")>;
@@ -9524,77 +9536,91 @@ declare module '@elastic/eui/src/components/icon/icon_map' {
9524
9536
  visTimelion: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/vis_timelion")>;
9525
9537
  visVega: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/code")>;
9526
9538
  visVisualBuilder: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/vis_visual_builder")>;
9527
- visualizeApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_visualize")>;
9528
- vulnerabilityManagementApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_vulnerability_management")>;
9529
- warning: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/warning")>;
9539
+ visualizeApp: IconImportLoaderWithMetadata;
9540
+ vulnerabilityManagementApp: IconImportLoaderWithMetadata;
9541
+ warning: IconImportLoaderWithMetadata;
9530
9542
  warningFilled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/warning_fill")>;
9531
- warningFill: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/warning_fill")>;
9532
- watchesApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_watches")>;
9543
+ warningFill: IconImportLoaderWithMetadata;
9544
+ watchesApp: IconImportLoaderWithMetadata;
9533
9545
  web: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/web")>;
9534
9546
  wordWrap: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/word_wrap")>;
9535
9547
  wordWrapDisabled: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/word_wrap_disabled")>;
9536
- workflowsApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_workflows")>;
9537
- workflow: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/workflow")>;
9538
- workplaceSearchApp: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/app_workplace_search")>;
9539
- wrench: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/wrench")>;
9540
- tokenAlias: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_alias")>;
9541
- tokenAnnotation: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_annotation")>;
9542
- tokenArray: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_array")>;
9543
- tokenBinary: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_binary")>;
9544
- tokenBoolean: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_boolean")>;
9545
- tokenClass: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_class")>;
9546
- tokenCompletionSuggester: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_completion_suggester")>;
9547
- tokenConstant: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_constant")>;
9548
- tokenDate: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_date")>;
9549
- tokenDimension: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_dimension")>;
9550
- tokenElement: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_element")>;
9551
- tokenEnum: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_enum")>;
9552
- tokenEnumMember: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_enum_member")>;
9553
- tokenEvent: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_event")>;
9554
- tokenException: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_exception")>;
9555
- tokenField: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_field")>;
9556
- tokenFile: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_file")>;
9557
- tokenFlattened: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_flattened")>;
9558
- tokenFunction: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_function")>;
9559
- tokenGeo: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_geo")>;
9560
- tokenHistogram: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_histogram")>;
9561
- tokenInterface: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_interface")>;
9562
- tokenIP: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_ip")>;
9563
- tokenJoin: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_join")>;
9564
- tokenKey: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_key")>;
9565
- tokenKeyword: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_keyword")>;
9566
- tokenMethod: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_method")>;
9567
- tokenMetricCounter: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_metric_counter")>;
9568
- tokenMetricGauge: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_metric_gauge")>;
9569
- tokenModule: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_module")>;
9570
- tokenNamespace: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_namespace")>;
9571
- tokenNested: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_nested")>;
9572
- tokenNull: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_null")>;
9573
- tokenNumber: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_number")>;
9574
- tokenObject: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_object")>;
9575
- tokenOperator: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_operator")>;
9576
- tokenPackage: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_package")>;
9577
- tokenParameter: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_parameter")>;
9578
- tokenPercolator: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_percolator")>;
9579
- tokenProperty: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_property")>;
9580
- tokenRange: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_range")>;
9581
- tokenRankFeature: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_rank_feature")>;
9582
- tokenRankFeatures: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_rank_features")>;
9583
- tokenRepo: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_repo")>;
9584
- tokenSearchType: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_search_type")>;
9585
- tokenSemanticText: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_semantic_text")>;
9586
- tokenShape: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_shape")>;
9587
- tokenString: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_string")>;
9588
- tokenStruct: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_struct")>;
9589
- tokenSymbol: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_symbol")>;
9590
- tokenTag: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_tag")>;
9591
- tokenText: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_text")>;
9592
- tokenTokenCount: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_token_count")>;
9593
- tokenVariable: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_variable")>;
9594
- tokenVectorDense: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_vector_dense")>;
9595
- tokenDenseVector: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_vector_dense")>;
9596
- tokenVectorSparse: () => Promise<typeof import ("@elastic/eui/src/components/icon/assets/token_vector_sparse")>;
9597
- };
9548
+ workflowsApp: IconImportLoaderWithMetadata;
9549
+ workflow: IconImportLoaderWithMetadata;
9550
+ workplaceSearchApp: IconImportLoaderWithMetadata;
9551
+ wrench: IconImportLoaderWithMetadata;
9552
+ tokenAlias: IconImportLoaderWithMetadata;
9553
+ tokenAnnotation: IconImportLoaderWithMetadata;
9554
+ tokenArray: IconImportLoaderWithMetadata;
9555
+ tokenBinary: IconImportLoaderWithMetadata;
9556
+ tokenBoolean: IconImportLoaderWithMetadata;
9557
+ tokenClass: IconImportLoaderWithMetadata;
9558
+ tokenCompletionSuggester: IconImportLoaderWithMetadata;
9559
+ tokenConstant: IconImportLoaderWithMetadata;
9560
+ tokenDate: IconImportLoaderWithMetadata;
9561
+ tokenDimension: IconImportLoaderWithMetadata;
9562
+ tokenElement: IconImportLoaderWithMetadata;
9563
+ tokenEnum: IconImportLoaderWithMetadata;
9564
+ tokenEnumMember: IconImportLoaderWithMetadata;
9565
+ tokenEvent: IconImportLoaderWithMetadata;
9566
+ tokenException: IconImportLoaderWithMetadata;
9567
+ tokenField: IconImportLoaderWithMetadata;
9568
+ tokenFile: IconImportLoaderWithMetadata;
9569
+ tokenFlattened: IconImportLoaderWithMetadata;
9570
+ tokenFunction: IconImportLoaderWithMetadata;
9571
+ tokenGeo: IconImportLoaderWithMetadata;
9572
+ tokenHistogram: IconImportLoaderWithMetadata;
9573
+ tokenInterface: IconImportLoaderWithMetadata;
9574
+ tokenIP: IconImportLoaderWithMetadata;
9575
+ tokenJoin: IconImportLoaderWithMetadata;
9576
+ tokenKey: IconImportLoaderWithMetadata;
9577
+ tokenKeyword: IconImportLoaderWithMetadata;
9578
+ tokenMethod: IconImportLoaderWithMetadata;
9579
+ tokenMetricCounter: IconImportLoaderWithMetadata;
9580
+ tokenMetricGauge: IconImportLoaderWithMetadata;
9581
+ tokenModule: IconImportLoaderWithMetadata;
9582
+ tokenNamespace: IconImportLoaderWithMetadata;
9583
+ tokenNested: IconImportLoaderWithMetadata;
9584
+ tokenNull: IconImportLoaderWithMetadata;
9585
+ tokenNumber: IconImportLoaderWithMetadata;
9586
+ tokenObject: IconImportLoaderWithMetadata;
9587
+ tokenOperator: IconImportLoaderWithMetadata;
9588
+ tokenPackage: IconImportLoaderWithMetadata;
9589
+ tokenParameter: IconImportLoaderWithMetadata;
9590
+ tokenPercolator: IconImportLoaderWithMetadata;
9591
+ tokenProperty: IconImportLoaderWithMetadata;
9592
+ tokenRange: IconImportLoaderWithMetadata;
9593
+ tokenRankFeature: IconImportLoaderWithMetadata;
9594
+ tokenRankFeatures: IconImportLoaderWithMetadata;
9595
+ tokenRepo: IconImportLoaderWithMetadata;
9596
+ tokenSearchType: IconImportLoaderWithMetadata;
9597
+ tokenSemanticText: IconImportLoaderWithMetadata;
9598
+ tokenShape: IconImportLoaderWithMetadata;
9599
+ tokenString: IconImportLoaderWithMetadata;
9600
+ tokenStruct: IconImportLoaderWithMetadata;
9601
+ tokenSymbol: IconImportLoaderWithMetadata;
9602
+ tokenTag: IconImportLoaderWithMetadata;
9603
+ tokenText: IconImportLoaderWithMetadata;
9604
+ tokenTokenCount: IconImportLoaderWithMetadata;
9605
+ tokenVariable: IconImportLoaderWithMetadata;
9606
+ tokenVectorDense: IconImportLoaderWithMetadata;
9607
+ tokenDenseVector: IconImportLoaderWithMetadata;
9608
+ tokenVectorSparse: IconImportLoaderWithMetadata;
9609
+ };
9610
+ export const typeToPathMapDeprecatedIconTypes: readonly ["alert", "anomalyChart", "apmTrace", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "arrowStart", "arrowEnd", "beaker", "boxesHorizontal", "changePointDetection", "checkInCircleFilled", "cheer", "color", "compute", "console", "contrastHigh", "controlsHorizontal", "controlsVertical", "copyClipboard", "crossInCircle", "crosshairs", "currency", "cut", "desktop", "diff", "discuss", "documentEdit", "doubleArrowLeft", "doubleArrowRight", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorChecklist", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "eql", "errorFilled", "exit", "expand", "expandMini", "exportAction", "eyeClosed", "fieldStatistics", "filterInCircle", "glasses", "grab", "grabHorizontal", "grabOmnidirectional", "heatmap", "importAction", "indexFlush", "indexMapping", "indexTemporary", "invert", "kqlField", "kqlOperand", "kqlSelector", "kqlValue", "launch", "lettering", "lineDashed", "lineDotted", "list", "listAdd", "logPatternAnalysis", "logstashIf", "logstashQueue", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "mapMarker", "minusInCircle", "minusInCircleFilled", "minusInSquare", "newChat", "node", "offline", "online", "pinFilled", "pipeBreaks", "pipeNoBreaks", "playFilled", "plusInCircle", "plusInCircleFilled", "plusInSquare", "popout", "productRobot", "push", "returnKey", "search", "securitySignal", "starEmpty", "starFilled", "starFilledSpace", "starMinusFilled", "starPlusFilled", "stopFilled", "streamsClassic", "streamsWired", "submodule", "tableDensityCompact", "tableDensityExpanded", "tableDensityNormal", "temperature", "timeRefresh", "timeslider", "training", "unlink", "userAvatar", "vector", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visVega", "warningFilled"];
9611
+ export const typeToPathMapAppIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
9612
+ export const typeToPathMapGlyphIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
9613
+ export const typeToPathMapLogoIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
9614
+ export const typeToPathMapMlIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
9615
+ export const typeToPathMapTokenIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
9616
+ export const typeToPathMapDocsAppIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
9617
+ export const typeToPathMapDocsGlyphIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
9618
+ export const typeToPathMapDocsLogoIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
9619
+ export const typeToPathMapDocsMlIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
9620
+ export const typeToPathMapDocsTokenIconTypes: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
9621
+ export type TypeToPathMapSynonyms = Partial<Record<keyof typeof typeToPathMap, string[]>>;
9622
+ export const typeToPathMapSynonyms: TypeToPathMapSynonyms;
9623
+ export {};
9598
9624
 
9599
9625
  }
9600
9626
  declare module '@elastic/eui/src/services/react' {
@@ -9647,7 +9673,7 @@ declare module '@elastic/eui/src/components/icon/icon' {
9647
9673
  import { WithEuiStylesMemoizerProps } from '@elastic/eui/src/services';
9648
9674
  export { COLORS } from '@elastic/eui/src/components/icon/named_colors';
9649
9675
  import { NamedColor } from '@elastic/eui/src/components/icon/named_colors';
9650
- export const TYPES: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "accessibility" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "archive" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "branch" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "check" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "popper" | "classificationJob" | "clickLeft" | "clickRight" | "clock" | "clockCounter" | "clockControl" | "cloud" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "cluster" | "codeApp" | "paintBucket" | "commandLine" | "comment" | "compare" | "compute" | "processor" | "console" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrast" | "contrastHigh" | "contrastFill" | "controls" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "cross" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "money" | "scissors" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "database" | "desktop" | "devToolsApp" | "diff" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "documentation" | "documents" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "redo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "undo" | "editorUnorderedList" | "listBullet" | "mail" | "emsApp" | "endpoint" | "eql" | "query" | "eraser" | "errorFilled" | "errorFill" | "esqlVis" | "exit" | "logOut" | "expand" | "maximize" | "expandMini" | "export" | "exportAction" | "upload" | "external" | "eye" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "flask" | "flag" | "fleetApp" | "fold" | "folder" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "globe" | "grabHorizontal" | "grabOmnidirectional" | "gradient" | "graphApp" | "grokApp" | "heart" | "heartbeatApp" | "heatmap" | "home" | "hourglass" | "if" | "info" | "importAction" | "index" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "infinity" | "inputOutput" | "inspect" | "ip" | "keyboard" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "launch" | "rocket" | "layers" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lock" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "queue" | "machineLearningApp" | "magnet" | "magnify" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "waypoint" | "megaphone" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "merge" | "metricbeatApp" | "metricsApp" | "minimize" | "minus" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "moon" | "namespace" | "nested" | "newChat" | "node" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "wifi" | "outlierDetectionJob" | "package" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "palette" | "paperClip" | "partial" | "payment" | "pencil" | "percent" | "pin" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "pivot" | "playFilled" | "plugs" | "plus" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "send" | "question" | "quote" | "radar" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reporter" | "reportingApp" | "return" | "returnKey" | "save" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "server" | "sessionViewer" | "shard" | "share" | "significantEvents" | "singleMetricViewer" | "snowflake" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "sortable" | "spacesApp" | "sparkles" | "sqlApp" | "star" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "sun" | "swatchInput" | "symlink" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tag" | "tear" | "thermometer" | "thumbDown" | "thumbUp" | "timeline" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "trash" | "unfold" | "unlink" | "upgradeAssistantApp" | "uptimeApp" | "user" | "userAvatar" | "users" | "usersRolesApp" | "unarchive" | "vector" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "web" | "wordWrapDisabled" | "workflowsApp" | "workflow" | "workplaceSearchApp" | "wrench" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
9676
+ export const TYPES: ("string" | "number" | "function" | "article" | "code" | "link" | "map" | "menu" | "search" | "section" | "table" | "filter" | "image" | "pattern" | "stop" | "text" | "at" | "key" | "error" | "warning" | "textHeading" | "scale" | "color" | "refresh" | "push" | "copy" | "cut" | "drag" | "pause" | "play" | "offline" | "online" | "storage" | "temperature" | "display" | "lineBreak" | "wordWrap" | "grid" | "empty" | "invert" | "ellipsis" | "crosshair" | "grab" | "help" | "move" | "spaces" | "dot" | "alert" | "document" | "list" | "presentation" | "email" | "annotation" | "mapping" | "container" | "logoElastic" | "logoVectorDB" | "pin" | "merge" | "expand" | "star" | "queue" | "layers" | "heatmap" | "share" | "check" | "popper" | "clock" | "cloud" | "cluster" | "console" | "comment" | "compare" | "diff" | "processor" | "compute" | "contrast" | "accessibility" | "controls" | "cross" | "money" | "payment" | "scissors" | "database" | "save" | "export" | "documentation" | "documents" | "redo" | "undo" | "mail" | "endpoint" | "query" | "eraser" | "maximize" | "upload" | "send" | "external" | "eye" | "info" | "minus" | "flask" | "flag" | "folder" | "archive" | "exit" | "minimize" | "wrench" | "globe" | "web" | "gradient" | "heart" | "home" | "hourglass" | "if" | "branch" | "index" | "timeline" | "infinity" | "inspect" | "keyboard" | "rocket" | "launch" | "return" | "unlink" | "lock" | "magnify" | "plus" | "waypoint" | "node" | "megaphone" | "moon" | "nested" | "vector" | "wifi" | "package" | "palette" | "partial" | "pencil" | "percent" | "pivot" | "question" | "quote" | "radar" | "reporter" | "server" | "shard" | "snowflake" | "sortable" | "sparkles" | "sun" | "symlink" | "tag" | "thermometer" | "trash" | "user" | "users" | "unarchive" | "workflow" | "addDataApp" | "addToChat" | "addToDashboard" | "advancedSettingsApp" | "agentApp" | "aggregate" | "alignBottom" | "alignBottomLeft" | "alignBottomRight" | "alignCenterHorizontal" | "alignCenterVertical" | "alignLeft" | "alignRight" | "alignTop" | "alignTopLeft" | "alignTopRight" | "analyzeEvent" | "anomalyChart" | "chartAnomaly" | "anomalySwimLane" | "apmApp" | "apmTrace" | "chartWaterfall" | "appSearchApp" | "apps" | "arrowDown" | "chevronSingleDown" | "arrowLeft" | "chevronSingleLeft" | "arrowRight" | "chevronSingleRight" | "arrowUp" | "chevronSingleUp" | "arrowStart" | "chevronLimitLeft" | "arrowEnd" | "chevronLimitRight" | "asterisk" | "axisX" | "axisYLeft" | "axisYRight" | "auditbeatApp" | "backgroundTask" | "beaker" | "bell" | "bellSlash" | "beta" | "bolt" | "boxesHorizontal" | "boxesVertical" | "briefcase" | "branchUser" | "broom" | "brush" | "bug" | "bulb" | "bullseye" | "calendar" | "canvasApp" | "casesApp" | "changePointDetection" | "chartChangePoint" | "chartArea" | "chartAreaStack" | "chartBarHorizontal" | "chartBarHorizontalStack" | "chartBarVertical" | "chartBarVerticalStack" | "chartGauge" | "chartHeatmap" | "chartLine" | "chartPie" | "chartTagCloud" | "chartThreshold" | "checkCircle" | "checkInCircleFilled" | "checkCircleFill" | "cheer" | "classificationJob" | "clickLeft" | "clickRight" | "clockCounter" | "clockControl" | "cloudDrizzle" | "cloudStormy" | "cloudSunny" | "codeApp" | "paintBucket" | "commandLine" | "consoleApp" | "continuityAbove" | "continuityAboveBelow" | "continuityBelow" | "continuityWithin" | "contrastHigh" | "contrastFill" | "controlsHorizontal" | "controlsVertical" | "copyClipboard" | "crossProjectSearch" | "createAdvancedJob" | "createGenericJob" | "createGeoJob" | "createMultiMetricJob" | "createPopulationJob" | "createSingleMetricJob" | "crossClusterReplicationApp" | "crossInCircle" | "crossCircle" | "crosshairs" | "currency" | "dashboardApp" | "dashedCircle" | "dataVisualizer" | "desktop" | "devToolsApp" | "discoverApp" | "distributeHorizontal" | "distributeVertical" | "download" | "dragHorizontal" | "dragVertical" | "discuss" | "documentEdit" | "dotInCircle" | "doubleArrowLeft" | "chevronDoubleLeft" | "doubleArrowRight" | "chevronDoubleRight" | "editorAlignCenter" | "textAlignCenter" | "editorAlignLeft" | "textAlignLeft" | "editorAlignRight" | "textAlignRight" | "editorBold" | "textBold" | "editorChecklist" | "listCheck" | "editorCodeBlock" | "editorComment" | "editorDistributeHorizontal" | "editorDistributeVertical" | "editorHeading" | "editorItalic" | "textItalic" | "editorItemAlignBottom" | "editorItemAlignCenter" | "editorItemAlignLeft" | "editorItemAlignMiddle" | "editorItemAlignRight" | "editorItemAlignTop" | "editorLink" | "editorOrderedList" | "listNumber" | "editorPositionBottomLeft" | "editorPositionBottomRight" | "editorPositionTopLeft" | "editorPositionTopRight" | "editorRedo" | "editorStrike" | "textStrike" | "editorTable" | "editorUnderline" | "textUnderline" | "editorUndo" | "editorUnorderedList" | "listBullet" | "emsApp" | "eql" | "errorFilled" | "errorFill" | "esqlVis" | "logOut" | "expandMini" | "exportAction" | "eyeClosed" | "eyeSlash" | "faceHappy" | "faceNeutral" | "faceSad" | "fieldStatistics" | "tableInfo" | "filebeatApp" | "filterExclude" | "filterIgnore" | "filterInclude" | "filterInCircle" | "fleetApp" | "fold" | "folderClosed" | "folderClose" | "folderCheck" | "folderExclamation" | "folderOpen" | "folderOpened" | "frameNext" | "framePrevious" | "fullScreen" | "fullScreenExit" | "gear" | "gisApp" | "glasses" | "grabHorizontal" | "grabOmnidirectional" | "graphApp" | "grokApp" | "heartbeatApp" | "importAction" | "indexClose" | "indexEdit" | "indexFlush" | "indexManagementApp" | "indexMapping" | "indexOpen" | "indexPatternApp" | "indexRollupApp" | "indexRuntime" | "indexSettings" | "indexTemporary" | "tableTime" | "inputOutput" | "ip" | "kqlField" | "queryField" | "kqlFunction" | "kqlOperand" | "queryOperand" | "kqlSelector" | "querySelector" | "kqlValue" | "queryValue" | "kubernetesNode" | "kubernetesPod" | "lensApp" | "lettering" | "lineBreakSlash" | "lineDash" | "lineDashed" | "lineDot" | "lineDotted" | "lineSolid" | "linkSlash" | "listAdd" | "lockOpen" | "logPatternAnalysis" | "logRateAnalysis" | "logoAWS" | "logoAWSMono" | "logoAerospike" | "logoApache" | "logoAppSearch" | "logoAzure" | "logoAzureMono" | "logoBeats" | "logoBusinessAnalytics" | "logoCeph" | "logoCloud" | "logoCloudEnterprise" | "logoCode" | "logoCodesandbox" | "logoCouchbase" | "logoDocker" | "logoDropwizard" | "logoElasticStack" | "logoElasticsearch" | "logoEnterpriseSearch" | "logoEtcd" | "logoGCP" | "logoGCPMono" | "logoGithub" | "logoGmail" | "logoGolang" | "logoGoogleG" | "logoHAproxy" | "logoIBM" | "logoIBMMono" | "logoKafka" | "logoKibana" | "logoKubernetes" | "logoLogging" | "logoLogstash" | "logoMaps" | "logoMemcached" | "logoMetrics" | "logoMongodb" | "logoMySQL" | "logoNginx" | "logoObservability" | "logoOsquery" | "logoPhp" | "logoPostgres" | "logoPrometheus" | "logoRabbitmq" | "logoRedis" | "logoSecurity" | "logoSiteSearch" | "logoSketch" | "logoSlack" | "logoUptime" | "logoVulnerabilityManagement" | "logoWebhook" | "logoWindows" | "logoWorkplaceSearch" | "logsApp" | "logstashFilter" | "logstashIf" | "logstashInput" | "logstashOutput" | "logstashQueue" | "machineLearningApp" | "magnet" | "magnifyExclamation" | "magnifyMinus" | "magnifyPlus" | "magnifyWithExclamation" | "magnifyWithMinus" | "magnifyWithPlus" | "managementApp" | "mapMarker" | "memory" | "menuDown" | "menuLeft" | "menuRight" | "menuUp" | "metricbeatApp" | "metricsApp" | "minusCircle" | "minusInCircle" | "minusInCircleFilled" | "minusInSquare" | "minusSquare" | "mobile" | "monitoringApp" | "namespace" | "newChat" | "vectorTriangle" | "notebookApp" | "wifiSlash" | "outlierDetectionJob" | "packetbeatApp" | "pageSelect" | "pagesSelect" | "paperClip" | "pinFill" | "pinFilled" | "pipeBreaks" | "pipelineApp" | "pipeNoBreaks" | "playFilled" | "plugs" | "plusCircle" | "plusInCircle" | "plusInCircleFilled" | "plusInSquare" | "plusSquare" | "popout" | "productRobot" | "productAgent" | "productCloudInfra" | "productDashboard" | "productDiscover" | "productML" | "productStreamsClassic" | "productStreamsWired" | "readOnly" | "recentlyViewedApp" | "regressionJob" | "reportingApp" | "returnKey" | "savedObjectsApp" | "searchProfilerApp" | "securityAnalyticsApp" | "securityApp" | "securitySignal" | "securitySignalDetected" | "securitySignalResolved" | "sessionViewer" | "significantEvents" | "singleMetricViewer" | "sortAscending" | "sortDescending" | "sortDown" | "sortLeft" | "sortRight" | "sortUp" | "spacesApp" | "sqlApp" | "starEmpty" | "starEmptySpace" | "starFill" | "starFilled" | "starFillSpace" | "starFilledSpace" | "starMinusEmpty" | "starMinusFill" | "starMinusFilled" | "starPlusEmpty" | "starPlusFill" | "starPlusFilled" | "stats" | "stopFill" | "stopFilled" | "stopSlash" | "streamsClassic" | "streamsWired" | "submodule" | "swatchInput" | "tableDensityCompact" | "tableDensityHigh" | "tableDensityExpanded" | "tableDensityLow" | "tableDensityNormal" | "tableOfContents" | "tear" | "thumbDown" | "thumbUp" | "timelineWithArrow" | "timelionApp" | "timeRefresh" | "refreshTime" | "timeslider" | "training" | "transitionBottomIn" | "transitionBottomOut" | "transitionLeftIn" | "transitionLeftOut" | "transitionTopIn" | "transitionTopOut" | "unfold" | "upgradeAssistantApp" | "uptimeApp" | "userAvatar" | "usersRolesApp" | "vectorSquare" | "videoPlayer" | "visArea" | "visAreaStacked" | "visBarHorizontal" | "visBarHorizontalStacked" | "visBarVertical" | "visBarVerticalStacked" | "visGauge" | "visGoal" | "visLine" | "visMapCoordinate" | "visMapRegion" | "visMetric" | "chartMetric" | "visPie" | "visTable" | "visTagCloud" | "visText" | "visTimelion" | "visVega" | "visVisualBuilder" | "visualizeApp" | "vulnerabilityManagementApp" | "warningFilled" | "warningFill" | "watchesApp" | "wordWrapDisabled" | "workflowsApp" | "workplaceSearchApp" | "tokenAlias" | "tokenAnnotation" | "tokenArray" | "tokenBinary" | "tokenBoolean" | "tokenClass" | "tokenCompletionSuggester" | "tokenConstant" | "tokenDate" | "tokenDimension" | "tokenElement" | "tokenEnum" | "tokenEnumMember" | "tokenEvent" | "tokenException" | "tokenField" | "tokenFile" | "tokenFlattened" | "tokenFunction" | "tokenGeo" | "tokenHistogram" | "tokenInterface" | "tokenIP" | "tokenJoin" | "tokenKey" | "tokenKeyword" | "tokenMethod" | "tokenMetricCounter" | "tokenMetricGauge" | "tokenModule" | "tokenNamespace" | "tokenNested" | "tokenNull" | "tokenNumber" | "tokenObject" | "tokenOperator" | "tokenPackage" | "tokenParameter" | "tokenPercolator" | "tokenProperty" | "tokenRange" | "tokenRankFeature" | "tokenRankFeatures" | "tokenRepo" | "tokenSearchType" | "tokenSemanticText" | "tokenShape" | "tokenString" | "tokenStruct" | "tokenSymbol" | "tokenTag" | "tokenText" | "tokenTokenCount" | "tokenVariable" | "tokenVectorDense" | "tokenDenseVector" | "tokenVectorSparse")[];
9651
9677
  export type EuiIconType = keyof typeof typeToPathMap;
9652
9678
  export type IconType = EuiIconType | string | ComponentType;
9653
9679
  export type IconColor = string | NamedColor;