amis 1.2.4-beta.10 → 1.2.4-beta.11

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 (99) hide show
  1. package/lib/components/Radios.d.ts +21 -21
  2. package/lib/components/Select.d.ts +239 -238
  3. package/lib/components/Select.js +6 -2
  4. package/lib/components/Select.js.map +2 -2
  5. package/lib/components/Tree.d.ts +352 -84
  6. package/lib/components/Tree.js +71 -12
  7. package/lib/components/Tree.js.map +2 -2
  8. package/lib/components/icons.js +3 -0
  9. package/lib/components/icons.js.map +2 -2
  10. package/lib/helper.css.map +1 -1
  11. package/lib/index.js +1 -1
  12. package/lib/locale/de-DE.js +2 -0
  13. package/lib/locale/de-DE.js.map +2 -2
  14. package/lib/locale/en-US.js +2 -0
  15. package/lib/locale/en-US.js.map +2 -2
  16. package/lib/locale/zh-CN.js +2 -0
  17. package/lib/locale/zh-CN.js.map +2 -2
  18. package/lib/renderers/Form/DiffEditor.d.ts +108 -90
  19. package/lib/renderers/Form/Editor.d.ts +108 -90
  20. package/lib/renderers/Form/InputImage.d.ts +1 -1
  21. package/lib/renderers/Form/InputImage.js +6 -5
  22. package/lib/renderers/Form/InputImage.js.map +2 -2
  23. package/lib/renderers/Form/InputTree.d.ts +14 -0
  24. package/lib/renderers/Form/InputTree.js +5 -3
  25. package/lib/renderers/Form/InputTree.js.map +2 -2
  26. package/lib/renderers/Form/NestedSelect.d.ts +6 -1
  27. package/lib/renderers/Form/NestedSelect.js +7 -3
  28. package/lib/renderers/Form/NestedSelect.js.map +2 -2
  29. package/lib/renderers/Form/Options.d.ts +1 -0
  30. package/lib/renderers/Form/Options.js +21 -3
  31. package/lib/renderers/Form/Options.js.map +2 -2
  32. package/lib/renderers/Form/TreeSelect.d.ts +19 -1
  33. package/lib/renderers/Form/TreeSelect.js +10 -4
  34. package/lib/renderers/Form/TreeSelect.js.map +2 -2
  35. package/lib/renderers/Table/index.js +24 -16
  36. package/lib/renderers/Table/index.js.map +2 -2
  37. package/lib/store/app.js +4 -7
  38. package/lib/store/app.js.map +2 -2
  39. package/lib/store/combo.d.ts +120 -100
  40. package/lib/store/form.d.ts +48 -40
  41. package/lib/store/formItem.d.ts +2 -1
  42. package/lib/store/formItem.js +83 -6
  43. package/lib/store/formItem.js.map +2 -2
  44. package/lib/store/table.d.ts +96 -80
  45. package/lib/themes/ang.css.map +1 -1
  46. package/lib/themes/antd.css.map +1 -1
  47. package/lib/themes/cxd-ie11.css +8 -2
  48. package/lib/themes/cxd.css +8 -2
  49. package/lib/themes/cxd.css.map +1 -1
  50. package/lib/themes/dark.css.map +1 -1
  51. package/lib/themes/default.css +8 -2
  52. package/lib/themes/default.css.map +1 -1
  53. package/lib/utils/helper.d.ts +15 -0
  54. package/lib/utils/helper.js +58 -4
  55. package/lib/utils/helper.js.map +2 -2
  56. package/lib/utils/markdown.js +3 -0
  57. package/lib/utils/markdown.js.map +2 -2
  58. package/package.json +5 -4
  59. package/schema.json +49 -21
  60. package/scss/_functions.scss +3 -1
  61. package/scss/components/_images.scss +4 -2
  62. package/scss/components/form/_form.scss +3 -2
  63. package/scss/components/form/_group.scss +4 -2
  64. package/scss/layout/_grid.scss +12 -10
  65. package/scss/themes/_cxd-variables.scss +8 -2
  66. package/sdk/charts.js +13 -13
  67. package/sdk/color-picker.js +67 -67
  68. package/sdk/cropperjs.js +2 -2
  69. package/sdk/cxd-ie11.css +8 -8
  70. package/sdk/cxd.css +8 -2
  71. package/sdk/exceljs.js +1 -1
  72. package/sdk/helper.css.map +1 -0
  73. package/sdk/markdown.js +70 -68
  74. package/sdk/papaparse.js +1 -1
  75. package/sdk/renderers/Form/CityDB.js +1 -1
  76. package/sdk/rest.js +19 -19
  77. package/sdk/rich-text.js +68 -68
  78. package/sdk/sdk-ie11.css +8 -8
  79. package/sdk/sdk.css +8 -2
  80. package/sdk/sdk.js +1132 -1130
  81. package/sdk/thirds/hls.js/hls.js +1 -1
  82. package/sdk/thirds/mpegts.js/mpegts.js +2 -2
  83. package/sdk/tinymce.js +59 -59
  84. package/src/components/Select.tsx +30 -5
  85. package/src/components/Tree.tsx +115 -20
  86. package/src/components/icons.tsx +4 -0
  87. package/src/locale/de-DE.ts +2 -0
  88. package/src/locale/en-US.ts +2 -0
  89. package/src/locale/zh-CN.ts +2 -0
  90. package/src/renderers/Form/InputImage.tsx +12 -6
  91. package/src/renderers/Form/InputTree.tsx +30 -2
  92. package/src/renderers/Form/NestedSelect.tsx +15 -3
  93. package/src/renderers/Form/Options.tsx +46 -4
  94. package/src/renderers/Form/TreeSelect.tsx +36 -3
  95. package/src/renderers/Table/index.tsx +48 -44
  96. package/src/store/app.ts +4 -7
  97. package/src/store/formItem.ts +107 -3
  98. package/src/utils/helper.ts +68 -7
  99. package/src/utils/markdown.ts +4 -0
@@ -47,14 +47,14 @@ export declare class Radios extends React.Component<RadioProps, any> {
47
47
  render(): JSX.Element;
48
48
  }
49
49
  declare const _default: {
50
- new (props: (Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
50
+ new (props: (Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
51
51
  type: string;
52
52
  resetValue: string;
53
53
  inline: boolean;
54
54
  joinValues: boolean;
55
55
  clearable: boolean;
56
56
  columnsCount: number;
57
- }, never>> & import("../theme").ThemeOutterProps) | Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
57
+ }, never>> & import("../theme").ThemeOutterProps) | Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
58
58
  type: string;
59
59
  resetValue: string;
60
60
  inline: boolean;
@@ -64,7 +64,7 @@ declare const _default: {
64
64
  }, never>> & import("../theme").ThemeOutterProps>): {
65
65
  render(): JSX.Element;
66
66
  context: any;
67
- setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
67
+ setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
68
68
  type: string;
69
69
  resetValue: string;
70
70
  inline: boolean;
@@ -73,7 +73,7 @@ declare const _default: {
73
73
  columnsCount: number;
74
74
  }, never>> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
75
75
  forceUpdate(callback?: (() => void) | undefined): void;
76
- readonly props: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
76
+ readonly props: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
77
77
  type: string;
78
78
  resetValue: string;
79
79
  inline: boolean;
@@ -88,7 +88,7 @@ declare const _default: {
88
88
  [key: string]: React.ReactInstance;
89
89
  };
90
90
  componentDidMount?(): void;
91
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
91
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
92
92
  type: string;
93
93
  resetValue: string;
94
94
  inline: boolean;
@@ -98,7 +98,7 @@ declare const _default: {
98
98
  }, never>> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
99
99
  componentWillUnmount?(): void;
100
100
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
101
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
101
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
102
102
  type: string;
103
103
  resetValue: string;
104
104
  inline: boolean;
@@ -106,7 +106,7 @@ declare const _default: {
106
106
  clearable: boolean;
107
107
  columnsCount: number;
108
108
  }, never>> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
109
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
109
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
110
110
  type: string;
111
111
  resetValue: string;
112
112
  inline: boolean;
@@ -116,7 +116,7 @@ declare const _default: {
116
116
  }, never>> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
117
117
  componentWillMount?(): void;
118
118
  UNSAFE_componentWillMount?(): void;
119
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
119
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
120
120
  type: string;
121
121
  resetValue: string;
122
122
  inline: boolean;
@@ -124,7 +124,7 @@ declare const _default: {
124
124
  clearable: boolean;
125
125
  columnsCount: number;
126
126
  }, never>> & import("../theme").ThemeOutterProps>, nextContext: any): void;
127
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
127
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
128
128
  type: string;
129
129
  resetValue: string;
130
130
  inline: boolean;
@@ -132,7 +132,7 @@ declare const _default: {
132
132
  clearable: boolean;
133
133
  columnsCount: number;
134
134
  }, never>> & import("../theme").ThemeOutterProps>, nextContext: any): void;
135
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
135
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
136
136
  type: string;
137
137
  resetValue: string;
138
138
  inline: boolean;
@@ -140,7 +140,7 @@ declare const _default: {
140
140
  clearable: boolean;
141
141
  columnsCount: number;
142
142
  }, never>> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
143
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
143
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
144
144
  type: string;
145
145
  resetValue: string;
146
146
  inline: boolean;
@@ -149,7 +149,7 @@ declare const _default: {
149
149
  columnsCount: number;
150
150
  }, never>> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
151
151
  };
152
- new (props: Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
152
+ new (props: Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
153
153
  type: string;
154
154
  resetValue: string;
155
155
  inline: boolean;
@@ -159,7 +159,7 @@ declare const _default: {
159
159
  }, never>> & import("../theme").ThemeOutterProps, context: any): {
160
160
  render(): JSX.Element;
161
161
  context: any;
162
- setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
162
+ setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
163
163
  type: string;
164
164
  resetValue: string;
165
165
  inline: boolean;
@@ -168,7 +168,7 @@ declare const _default: {
168
168
  columnsCount: number;
169
169
  }, never>> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
170
170
  forceUpdate(callback?: (() => void) | undefined): void;
171
- readonly props: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
171
+ readonly props: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
172
172
  type: string;
173
173
  resetValue: string;
174
174
  inline: boolean;
@@ -183,7 +183,7 @@ declare const _default: {
183
183
  [key: string]: React.ReactInstance;
184
184
  };
185
185
  componentDidMount?(): void;
186
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
186
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
187
187
  type: string;
188
188
  resetValue: string;
189
189
  inline: boolean;
@@ -193,7 +193,7 @@ declare const _default: {
193
193
  }, never>> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
194
194
  componentWillUnmount?(): void;
195
195
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
196
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
196
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
197
197
  type: string;
198
198
  resetValue: string;
199
199
  inline: boolean;
@@ -201,7 +201,7 @@ declare const _default: {
201
201
  clearable: boolean;
202
202
  columnsCount: number;
203
203
  }, never>> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
204
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
204
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
205
205
  type: string;
206
206
  resetValue: string;
207
207
  inline: boolean;
@@ -211,7 +211,7 @@ declare const _default: {
211
211
  }, never>> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
212
212
  componentWillMount?(): void;
213
213
  UNSAFE_componentWillMount?(): void;
214
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
214
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
215
215
  type: string;
216
216
  resetValue: string;
217
217
  inline: boolean;
@@ -219,7 +219,7 @@ declare const _default: {
219
219
  clearable: boolean;
220
220
  columnsCount: number;
221
221
  }, never>> & import("../theme").ThemeOutterProps>, nextContext: any): void;
222
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
222
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
223
223
  type: string;
224
224
  resetValue: string;
225
225
  inline: boolean;
@@ -227,7 +227,7 @@ declare const _default: {
227
227
  clearable: boolean;
228
228
  columnsCount: number;
229
229
  }, never>> & import("../theme").ThemeOutterProps>, nextContext: any): void;
230
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
230
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
231
231
  type: string;
232
232
  resetValue: string;
233
233
  inline: boolean;
@@ -235,7 +235,7 @@ declare const _default: {
235
235
  clearable: boolean;
236
236
  columnsCount: number;
237
237
  }, never>> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
238
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
238
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "style" | "value" | "disabled" | "multiple" | "labelField" | "id" | "loading" | "delimiter" | "valueField" | "extractValue" | "options" | "placeholder" | "onChange" | "labelClassName" | "itemClassName" | "multi" | "simpleValue" | "creatable" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete"> & Partial<Pick<Omit<RadioProps, keyof import("../theme").ThemeProps>, "type" | "joinValues" | "resetValue" | "inline" | "clearable" | "columnsCount">> & Partial<Pick<{
239
239
  type: string;
240
240
  resetValue: string;
241
241
  inline: boolean;
@@ -30,6 +30,7 @@ export interface OptionProps {
30
30
  placeholder?: string;
31
31
  disabled?: boolean;
32
32
  creatable?: boolean;
33
+ pathSeparator?: string;
33
34
  onAdd?: (idx?: number | Array<number>, value?: any, skipForm?: boolean) => void;
34
35
  editable?: boolean;
35
36
  onEdit?: (value: Option, origin?: Option, skipForm?: boolean) => void;
@@ -37,7 +38,7 @@ export interface OptionProps {
37
38
  onDelete?: (value: Option) => void;
38
39
  }
39
40
  export declare type OptionValue = string | number | null | undefined | Option;
40
- export declare function value2array(value: OptionValue | Array<OptionValue>, props: Pick<OptionProps, 'multi' | 'multiple' | 'delimiter' | 'valueField' | 'options'>): Array<Option>;
41
+ export declare function value2array(value: OptionValue | Array<OptionValue>, props: Pick<OptionProps, 'multi' | 'multiple' | 'delimiter' | 'valueField' | 'labelField' | 'options' | 'pathSeparator'>, enableNodePath?: boolean): Array<Option>;
41
42
  export declare function expandValue(value: OptionValue, options: Options, valueField?: string): Option | null;
42
43
  export declare function matchOptionValue(a: OptionValue, b: Option, valueField?: string): boolean;
43
44
  export declare function optionValueCompare(a: OptionValue, valueField?: string): (b: Option) => boolean;
@@ -161,7 +162,7 @@ export declare class Select extends React.Component<SelectProps, SelectState> {
161
162
  render(): JSX.Element;
162
163
  }
163
164
  declare const EnhancedSelect: {
164
- new (props: (Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
165
+ new (props: (Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
165
166
  multiple: boolean;
166
167
  clearable: boolean;
167
168
  creatable: boolean;
@@ -184,7 +185,7 @@ declare const EnhancedSelect: {
184
185
  }, never>> & {
185
186
  locale?: string | undefined;
186
187
  translate?: ((str: string, ...args: any[]) => string) | undefined;
187
- }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
188
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
188
189
  multiple: boolean;
189
190
  clearable: boolean;
190
191
  creatable: boolean;
@@ -210,7 +211,7 @@ declare const EnhancedSelect: {
210
211
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
211
212
  render(): JSX.Element;
212
213
  context: any;
213
- setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
214
+ setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
214
215
  multiple: boolean;
215
216
  clearable: boolean;
216
217
  creatable: boolean;
@@ -235,7 +236,7 @@ declare const EnhancedSelect: {
235
236
  translate?: ((str: string, ...args: any[]) => string) | undefined;
236
237
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
237
238
  forceUpdate(callback?: (() => void) | undefined): void;
238
- readonly props: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
239
+ readonly props: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
239
240
  multiple: boolean;
240
241
  clearable: boolean;
241
242
  creatable: boolean;
@@ -266,7 +267,7 @@ declare const EnhancedSelect: {
266
267
  [key: string]: React.ReactInstance;
267
268
  };
268
269
  componentDidMount?(): void;
269
- shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
270
+ shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
270
271
  multiple: boolean;
271
272
  clearable: boolean;
272
273
  creatable: boolean;
@@ -292,7 +293,7 @@ declare const EnhancedSelect: {
292
293
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
293
294
  componentWillUnmount?(): void;
294
295
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
295
- getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
296
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
296
297
  multiple: boolean;
297
298
  clearable: boolean;
298
299
  creatable: boolean;
@@ -316,7 +317,7 @@ declare const EnhancedSelect: {
316
317
  locale?: string | undefined;
317
318
  translate?: ((str: string, ...args: any[]) => string) | undefined;
318
319
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
319
- componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
320
+ componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
320
321
  multiple: boolean;
321
322
  clearable: boolean;
322
323
  creatable: boolean;
@@ -342,7 +343,7 @@ declare const EnhancedSelect: {
342
343
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
343
344
  componentWillMount?(): void;
344
345
  UNSAFE_componentWillMount?(): void;
345
- componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
346
+ componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
346
347
  multiple: boolean;
347
348
  clearable: boolean;
348
349
  creatable: boolean;
@@ -366,7 +367,7 @@ declare const EnhancedSelect: {
366
367
  locale?: string | undefined;
367
368
  translate?: ((str: string, ...args: any[]) => string) | undefined;
368
369
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
369
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
370
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
370
371
  multiple: boolean;
371
372
  clearable: boolean;
372
373
  creatable: boolean;
@@ -390,7 +391,7 @@ declare const EnhancedSelect: {
390
391
  locale?: string | undefined;
391
392
  translate?: ((str: string, ...args: any[]) => string) | undefined;
392
393
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
393
- componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
394
+ componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
394
395
  multiple: boolean;
395
396
  clearable: boolean;
396
397
  creatable: boolean;
@@ -414,7 +415,7 @@ declare const EnhancedSelect: {
414
415
  locale?: string | undefined;
415
416
  translate?: ((str: string, ...args: any[]) => string) | undefined;
416
417
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
417
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
418
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
418
419
  multiple: boolean;
419
420
  clearable: boolean;
420
421
  creatable: boolean;
@@ -439,7 +440,7 @@ declare const EnhancedSelect: {
439
440
  translate?: ((str: string, ...args: any[]) => string) | undefined;
440
441
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
441
442
  };
442
- new (props: Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
443
+ new (props: Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
443
444
  multiple: boolean;
444
445
  clearable: boolean;
445
446
  creatable: boolean;
@@ -465,7 +466,7 @@ declare const EnhancedSelect: {
465
466
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
466
467
  render(): JSX.Element;
467
468
  context: any;
468
- setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
469
+ setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
469
470
  multiple: boolean;
470
471
  clearable: boolean;
471
472
  creatable: boolean;
@@ -490,7 +491,7 @@ declare const EnhancedSelect: {
490
491
  translate?: ((str: string, ...args: any[]) => string) | undefined;
491
492
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
492
493
  forceUpdate(callback?: (() => void) | undefined): void;
493
- readonly props: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
494
+ readonly props: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
494
495
  multiple: boolean;
495
496
  clearable: boolean;
496
497
  creatable: boolean;
@@ -521,7 +522,7 @@ declare const EnhancedSelect: {
521
522
  [key: string]: React.ReactInstance;
522
523
  };
523
524
  componentDidMount?(): void;
524
- shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
525
+ shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
525
526
  multiple: boolean;
526
527
  clearable: boolean;
527
528
  creatable: boolean;
@@ -547,7 +548,7 @@ declare const EnhancedSelect: {
547
548
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
548
549
  componentWillUnmount?(): void;
549
550
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
550
- getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
551
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
551
552
  multiple: boolean;
552
553
  clearable: boolean;
553
554
  creatable: boolean;
@@ -571,7 +572,7 @@ declare const EnhancedSelect: {
571
572
  locale?: string | undefined;
572
573
  translate?: ((str: string, ...args: any[]) => string) | undefined;
573
574
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
574
- componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
575
+ componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
575
576
  multiple: boolean;
576
577
  clearable: boolean;
577
578
  creatable: boolean;
@@ -597,7 +598,7 @@ declare const EnhancedSelect: {
597
598
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
598
599
  componentWillMount?(): void;
599
600
  UNSAFE_componentWillMount?(): void;
600
- componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
601
+ componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
601
602
  multiple: boolean;
602
603
  clearable: boolean;
603
604
  creatable: boolean;
@@ -621,7 +622,7 @@ declare const EnhancedSelect: {
621
622
  locale?: string | undefined;
622
623
  translate?: ((str: string, ...args: any[]) => string) | undefined;
623
624
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
624
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
625
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
625
626
  multiple: boolean;
626
627
  clearable: boolean;
627
628
  creatable: boolean;
@@ -645,7 +646,7 @@ declare const EnhancedSelect: {
645
646
  locale?: string | undefined;
646
647
  translate?: ((str: string, ...args: any[]) => string) | undefined;
647
648
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
648
- componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
649
+ componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
649
650
  multiple: boolean;
650
651
  clearable: boolean;
651
652
  creatable: boolean;
@@ -669,7 +670,7 @@ declare const EnhancedSelect: {
669
670
  locale?: string | undefined;
670
671
  translate?: ((str: string, ...args: any[]) => string) | undefined;
671
672
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
672
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
673
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
673
674
  multiple: boolean;
674
675
  clearable: boolean;
675
676
  creatable: boolean;
@@ -697,7 +698,7 @@ declare const EnhancedSelect: {
697
698
  displayName: string;
698
699
  contextType: React.Context<string>;
699
700
  ComposedComponent: React.ComponentType<{
700
- new (props: (Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
701
+ new (props: (Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
701
702
  multiple: boolean;
702
703
  clearable: boolean;
703
704
  creatable: boolean;
@@ -720,7 +721,7 @@ declare const EnhancedSelect: {
720
721
  }, never>> & {
721
722
  locale?: string | undefined;
722
723
  translate?: ((str: string, ...args: any[]) => string) | undefined;
723
- }) | Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
724
+ }) | Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
724
725
  multiple: boolean;
725
726
  clearable: boolean;
726
727
  creatable: boolean;
@@ -746,7 +747,7 @@ declare const EnhancedSelect: {
746
747
  }>): {
747
748
  render(): JSX.Element;
748
749
  context: any;
749
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
750
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
750
751
  multiple: boolean;
751
752
  clearable: boolean;
752
753
  creatable: boolean;
@@ -771,7 +772,7 @@ declare const EnhancedSelect: {
771
772
  translate?: ((str: string, ...args: any[]) => string) | undefined;
772
773
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
773
774
  forceUpdate(callback?: (() => void) | undefined): void;
774
- readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
775
+ readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
775
776
  multiple: boolean;
776
777
  clearable: boolean;
777
778
  creatable: boolean;
@@ -802,7 +803,7 @@ declare const EnhancedSelect: {
802
803
  [key: string]: React.ReactInstance;
803
804
  };
804
805
  componentDidMount?(): void;
805
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
806
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
806
807
  multiple: boolean;
807
808
  clearable: boolean;
808
809
  creatable: boolean;
@@ -828,7 +829,7 @@ declare const EnhancedSelect: {
828
829
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
829
830
  componentWillUnmount?(): void;
830
831
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
831
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
832
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
832
833
  multiple: boolean;
833
834
  clearable: boolean;
834
835
  creatable: boolean;
@@ -852,7 +853,7 @@ declare const EnhancedSelect: {
852
853
  locale?: string | undefined;
853
854
  translate?: ((str: string, ...args: any[]) => string) | undefined;
854
855
  }>, prevState: Readonly<{}>): any;
855
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
856
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
856
857
  multiple: boolean;
857
858
  clearable: boolean;
858
859
  creatable: boolean;
@@ -878,7 +879,7 @@ declare const EnhancedSelect: {
878
879
  }>, prevState: Readonly<{}>, snapshot?: any): void;
879
880
  componentWillMount?(): void;
880
881
  UNSAFE_componentWillMount?(): void;
881
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
882
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
882
883
  multiple: boolean;
883
884
  clearable: boolean;
884
885
  creatable: boolean;
@@ -902,7 +903,7 @@ declare const EnhancedSelect: {
902
903
  locale?: string | undefined;
903
904
  translate?: ((str: string, ...args: any[]) => string) | undefined;
904
905
  }>, nextContext: any): void;
905
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
906
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
906
907
  multiple: boolean;
907
908
  clearable: boolean;
908
909
  creatable: boolean;
@@ -926,7 +927,7 @@ declare const EnhancedSelect: {
926
927
  locale?: string | undefined;
927
928
  translate?: ((str: string, ...args: any[]) => string) | undefined;
928
929
  }>, nextContext: any): void;
929
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
930
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
930
931
  multiple: boolean;
931
932
  clearable: boolean;
932
933
  creatable: boolean;
@@ -950,7 +951,7 @@ declare const EnhancedSelect: {
950
951
  locale?: string | undefined;
951
952
  translate?: ((str: string, ...args: any[]) => string) | undefined;
952
953
  }>, nextState: Readonly<{}>, nextContext: any): void;
953
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
954
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
954
955
  multiple: boolean;
955
956
  clearable: boolean;
956
957
  creatable: boolean;
@@ -975,7 +976,7 @@ declare const EnhancedSelect: {
975
976
  translate?: ((str: string, ...args: any[]) => string) | undefined;
976
977
  }>, nextState: Readonly<{}>, nextContext: any): void;
977
978
  };
978
- new (props: Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
979
+ new (props: Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
979
980
  multiple: boolean;
980
981
  clearable: boolean;
981
982
  creatable: boolean;
@@ -1001,7 +1002,7 @@ declare const EnhancedSelect: {
1001
1002
  }, context: any): {
1002
1003
  render(): JSX.Element;
1003
1004
  context: any;
1004
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1005
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1005
1006
  multiple: boolean;
1006
1007
  clearable: boolean;
1007
1008
  creatable: boolean;
@@ -1026,7 +1027,7 @@ declare const EnhancedSelect: {
1026
1027
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1027
1028
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
1028
1029
  forceUpdate(callback?: (() => void) | undefined): void;
1029
- readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1030
+ readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1030
1031
  multiple: boolean;
1031
1032
  clearable: boolean;
1032
1033
  creatable: boolean;
@@ -1057,7 +1058,7 @@ declare const EnhancedSelect: {
1057
1058
  [key: string]: React.ReactInstance;
1058
1059
  };
1059
1060
  componentDidMount?(): void;
1060
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1061
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1061
1062
  multiple: boolean;
1062
1063
  clearable: boolean;
1063
1064
  creatable: boolean;
@@ -1083,7 +1084,7 @@ declare const EnhancedSelect: {
1083
1084
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
1084
1085
  componentWillUnmount?(): void;
1085
1086
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1086
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1087
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1087
1088
  multiple: boolean;
1088
1089
  clearable: boolean;
1089
1090
  creatable: boolean;
@@ -1107,7 +1108,7 @@ declare const EnhancedSelect: {
1107
1108
  locale?: string | undefined;
1108
1109
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1109
1110
  }>, prevState: Readonly<{}>): any;
1110
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1111
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1111
1112
  multiple: boolean;
1112
1113
  clearable: boolean;
1113
1114
  creatable: boolean;
@@ -1133,7 +1134,7 @@ declare const EnhancedSelect: {
1133
1134
  }>, prevState: Readonly<{}>, snapshot?: any): void;
1134
1135
  componentWillMount?(): void;
1135
1136
  UNSAFE_componentWillMount?(): void;
1136
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1137
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1137
1138
  multiple: boolean;
1138
1139
  clearable: boolean;
1139
1140
  creatable: boolean;
@@ -1157,7 +1158,7 @@ declare const EnhancedSelect: {
1157
1158
  locale?: string | undefined;
1158
1159
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1159
1160
  }>, nextContext: any): void;
1160
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1161
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1161
1162
  multiple: boolean;
1162
1163
  clearable: boolean;
1163
1164
  creatable: boolean;
@@ -1181,7 +1182,7 @@ declare const EnhancedSelect: {
1181
1182
  locale?: string | undefined;
1182
1183
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1183
1184
  }>, nextContext: any): void;
1184
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1185
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1185
1186
  multiple: boolean;
1186
1187
  clearable: boolean;
1187
1188
  creatable: boolean;
@@ -1205,7 +1206,7 @@ declare const EnhancedSelect: {
1205
1206
  locale?: string | undefined;
1206
1207
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1207
1208
  }>, nextState: Readonly<{}>, nextContext: any): void;
1208
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1209
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1209
1210
  multiple: boolean;
1210
1211
  clearable: boolean;
1211
1212
  creatable: boolean;
@@ -1237,7 +1238,7 @@ declare const EnhancedSelect: {
1237
1238
  ComposedComponent: typeof Select;
1238
1239
  }>;
1239
1240
  } & import("hoist-non-react-statics").NonReactStatics<{
1240
- new (props: (Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1241
+ new (props: (Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1241
1242
  multiple: boolean;
1242
1243
  clearable: boolean;
1243
1244
  creatable: boolean;
@@ -1260,7 +1261,7 @@ declare const EnhancedSelect: {
1260
1261
  }, never>> & {
1261
1262
  locale?: string | undefined;
1262
1263
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1263
- }) | Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1264
+ }) | Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1264
1265
  multiple: boolean;
1265
1266
  clearable: boolean;
1266
1267
  creatable: boolean;
@@ -1286,7 +1287,7 @@ declare const EnhancedSelect: {
1286
1287
  }>): {
1287
1288
  render(): JSX.Element;
1288
1289
  context: any;
1289
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1290
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1290
1291
  multiple: boolean;
1291
1292
  clearable: boolean;
1292
1293
  creatable: boolean;
@@ -1311,7 +1312,7 @@ declare const EnhancedSelect: {
1311
1312
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1312
1313
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
1313
1314
  forceUpdate(callback?: (() => void) | undefined): void;
1314
- readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1315
+ readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1315
1316
  multiple: boolean;
1316
1317
  clearable: boolean;
1317
1318
  creatable: boolean;
@@ -1342,7 +1343,7 @@ declare const EnhancedSelect: {
1342
1343
  [key: string]: React.ReactInstance;
1343
1344
  };
1344
1345
  componentDidMount?(): void;
1345
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1346
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1346
1347
  multiple: boolean;
1347
1348
  clearable: boolean;
1348
1349
  creatable: boolean;
@@ -1368,7 +1369,7 @@ declare const EnhancedSelect: {
1368
1369
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
1369
1370
  componentWillUnmount?(): void;
1370
1371
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1371
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1372
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1372
1373
  multiple: boolean;
1373
1374
  clearable: boolean;
1374
1375
  creatable: boolean;
@@ -1392,7 +1393,7 @@ declare const EnhancedSelect: {
1392
1393
  locale?: string | undefined;
1393
1394
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1394
1395
  }>, prevState: Readonly<{}>): any;
1395
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1396
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1396
1397
  multiple: boolean;
1397
1398
  clearable: boolean;
1398
1399
  creatable: boolean;
@@ -1418,7 +1419,7 @@ declare const EnhancedSelect: {
1418
1419
  }>, prevState: Readonly<{}>, snapshot?: any): void;
1419
1420
  componentWillMount?(): void;
1420
1421
  UNSAFE_componentWillMount?(): void;
1421
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1422
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1422
1423
  multiple: boolean;
1423
1424
  clearable: boolean;
1424
1425
  creatable: boolean;
@@ -1442,7 +1443,7 @@ declare const EnhancedSelect: {
1442
1443
  locale?: string | undefined;
1443
1444
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1444
1445
  }>, nextContext: any): void;
1445
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1446
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1446
1447
  multiple: boolean;
1447
1448
  clearable: boolean;
1448
1449
  creatable: boolean;
@@ -1466,7 +1467,7 @@ declare const EnhancedSelect: {
1466
1467
  locale?: string | undefined;
1467
1468
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1468
1469
  }>, nextContext: any): void;
1469
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1470
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1470
1471
  multiple: boolean;
1471
1472
  clearable: boolean;
1472
1473
  creatable: boolean;
@@ -1490,7 +1491,7 @@ declare const EnhancedSelect: {
1490
1491
  locale?: string | undefined;
1491
1492
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1492
1493
  }>, nextState: Readonly<{}>, nextContext: any): void;
1493
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1494
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1494
1495
  multiple: boolean;
1495
1496
  clearable: boolean;
1496
1497
  creatable: boolean;
@@ -1515,7 +1516,7 @@ declare const EnhancedSelect: {
1515
1516
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1516
1517
  }>, nextState: Readonly<{}>, nextContext: any): void;
1517
1518
  };
1518
- new (props: Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1519
+ new (props: Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1519
1520
  multiple: boolean;
1520
1521
  clearable: boolean;
1521
1522
  creatable: boolean;
@@ -1541,7 +1542,7 @@ declare const EnhancedSelect: {
1541
1542
  }, context: any): {
1542
1543
  render(): JSX.Element;
1543
1544
  context: any;
1544
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1545
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1545
1546
  multiple: boolean;
1546
1547
  clearable: boolean;
1547
1548
  creatable: boolean;
@@ -1566,7 +1567,7 @@ declare const EnhancedSelect: {
1566
1567
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1567
1568
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
1568
1569
  forceUpdate(callback?: (() => void) | undefined): void;
1569
- readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1570
+ readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1570
1571
  multiple: boolean;
1571
1572
  clearable: boolean;
1572
1573
  creatable: boolean;
@@ -1597,7 +1598,7 @@ declare const EnhancedSelect: {
1597
1598
  [key: string]: React.ReactInstance;
1598
1599
  };
1599
1600
  componentDidMount?(): void;
1600
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1601
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1601
1602
  multiple: boolean;
1602
1603
  clearable: boolean;
1603
1604
  creatable: boolean;
@@ -1623,7 +1624,7 @@ declare const EnhancedSelect: {
1623
1624
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
1624
1625
  componentWillUnmount?(): void;
1625
1626
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1626
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1627
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1627
1628
  multiple: boolean;
1628
1629
  clearable: boolean;
1629
1630
  creatable: boolean;
@@ -1647,7 +1648,7 @@ declare const EnhancedSelect: {
1647
1648
  locale?: string | undefined;
1648
1649
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1649
1650
  }>, prevState: Readonly<{}>): any;
1650
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1651
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1651
1652
  multiple: boolean;
1652
1653
  clearable: boolean;
1653
1654
  creatable: boolean;
@@ -1673,7 +1674,7 @@ declare const EnhancedSelect: {
1673
1674
  }>, prevState: Readonly<{}>, snapshot?: any): void;
1674
1675
  componentWillMount?(): void;
1675
1676
  UNSAFE_componentWillMount?(): void;
1676
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1677
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1677
1678
  multiple: boolean;
1678
1679
  clearable: boolean;
1679
1680
  creatable: boolean;
@@ -1697,7 +1698,7 @@ declare const EnhancedSelect: {
1697
1698
  locale?: string | undefined;
1698
1699
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1699
1700
  }>, nextContext: any): void;
1700
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1701
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1701
1702
  multiple: boolean;
1702
1703
  clearable: boolean;
1703
1704
  creatable: boolean;
@@ -1721,7 +1722,7 @@ declare const EnhancedSelect: {
1721
1722
  locale?: string | undefined;
1722
1723
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1723
1724
  }>, nextContext: any): void;
1724
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1725
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1725
1726
  multiple: boolean;
1726
1727
  clearable: boolean;
1727
1728
  creatable: boolean;
@@ -1745,7 +1746,7 @@ declare const EnhancedSelect: {
1745
1746
  locale?: string | undefined;
1746
1747
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1747
1748
  }>, nextState: Readonly<{}>, nextContext: any): void;
1748
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1749
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1749
1750
  multiple: boolean;
1750
1751
  clearable: boolean;
1751
1752
  creatable: boolean;
@@ -1777,7 +1778,7 @@ declare const EnhancedSelect: {
1777
1778
  ComposedComponent: typeof Select;
1778
1779
  }, {}> & {
1779
1780
  ComposedComponent: {
1780
- new (props: (Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1781
+ new (props: (Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1781
1782
  multiple: boolean;
1782
1783
  clearable: boolean;
1783
1784
  creatable: boolean;
@@ -1800,7 +1801,7 @@ declare const EnhancedSelect: {
1800
1801
  }, never>> & {
1801
1802
  locale?: string | undefined;
1802
1803
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1803
- }) | Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1804
+ }) | Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1804
1805
  multiple: boolean;
1805
1806
  clearable: boolean;
1806
1807
  creatable: boolean;
@@ -1826,7 +1827,7 @@ declare const EnhancedSelect: {
1826
1827
  }>): {
1827
1828
  render(): JSX.Element;
1828
1829
  context: any;
1829
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1830
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1830
1831
  multiple: boolean;
1831
1832
  clearable: boolean;
1832
1833
  creatable: boolean;
@@ -1851,7 +1852,7 @@ declare const EnhancedSelect: {
1851
1852
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1852
1853
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
1853
1854
  forceUpdate(callback?: (() => void) | undefined): void;
1854
- readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1855
+ readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1855
1856
  multiple: boolean;
1856
1857
  clearable: boolean;
1857
1858
  creatable: boolean;
@@ -1882,7 +1883,7 @@ declare const EnhancedSelect: {
1882
1883
  [key: string]: React.ReactInstance;
1883
1884
  };
1884
1885
  componentDidMount?(): void;
1885
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1886
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1886
1887
  multiple: boolean;
1887
1888
  clearable: boolean;
1888
1889
  creatable: boolean;
@@ -1908,7 +1909,7 @@ declare const EnhancedSelect: {
1908
1909
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
1909
1910
  componentWillUnmount?(): void;
1910
1911
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1911
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1912
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1912
1913
  multiple: boolean;
1913
1914
  clearable: boolean;
1914
1915
  creatable: boolean;
@@ -1932,7 +1933,7 @@ declare const EnhancedSelect: {
1932
1933
  locale?: string | undefined;
1933
1934
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1934
1935
  }>, prevState: Readonly<{}>): any;
1935
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1936
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1936
1937
  multiple: boolean;
1937
1938
  clearable: boolean;
1938
1939
  creatable: boolean;
@@ -1958,7 +1959,7 @@ declare const EnhancedSelect: {
1958
1959
  }>, prevState: Readonly<{}>, snapshot?: any): void;
1959
1960
  componentWillMount?(): void;
1960
1961
  UNSAFE_componentWillMount?(): void;
1961
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1962
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1962
1963
  multiple: boolean;
1963
1964
  clearable: boolean;
1964
1965
  creatable: boolean;
@@ -1982,7 +1983,7 @@ declare const EnhancedSelect: {
1982
1983
  locale?: string | undefined;
1983
1984
  translate?: ((str: string, ...args: any[]) => string) | undefined;
1984
1985
  }>, nextContext: any): void;
1985
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1986
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
1986
1987
  multiple: boolean;
1987
1988
  clearable: boolean;
1988
1989
  creatable: boolean;
@@ -2006,7 +2007,7 @@ declare const EnhancedSelect: {
2006
2007
  locale?: string | undefined;
2007
2008
  translate?: ((str: string, ...args: any[]) => string) | undefined;
2008
2009
  }>, nextContext: any): void;
2009
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2010
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2010
2011
  multiple: boolean;
2011
2012
  clearable: boolean;
2012
2013
  creatable: boolean;
@@ -2030,7 +2031,7 @@ declare const EnhancedSelect: {
2030
2031
  locale?: string | undefined;
2031
2032
  translate?: ((str: string, ...args: any[]) => string) | undefined;
2032
2033
  }>, nextState: Readonly<{}>, nextContext: any): void;
2033
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2034
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2034
2035
  multiple: boolean;
2035
2036
  clearable: boolean;
2036
2037
  creatable: boolean;
@@ -2055,7 +2056,7 @@ declare const EnhancedSelect: {
2055
2056
  translate?: ((str: string, ...args: any[]) => string) | undefined;
2056
2057
  }>, nextState: Readonly<{}>, nextContext: any): void;
2057
2058
  };
2058
- new (props: Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2059
+ new (props: Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2059
2060
  multiple: boolean;
2060
2061
  clearable: boolean;
2061
2062
  creatable: boolean;
@@ -2081,7 +2082,7 @@ declare const EnhancedSelect: {
2081
2082
  }, context: any): {
2082
2083
  render(): JSX.Element;
2083
2084
  context: any;
2084
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2085
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2085
2086
  multiple: boolean;
2086
2087
  clearable: boolean;
2087
2088
  creatable: boolean;
@@ -2106,7 +2107,7 @@ declare const EnhancedSelect: {
2106
2107
  translate?: ((str: string, ...args: any[]) => string) | undefined;
2107
2108
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
2108
2109
  forceUpdate(callback?: (() => void) | undefined): void;
2109
- readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2110
+ readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2110
2111
  multiple: boolean;
2111
2112
  clearable: boolean;
2112
2113
  creatable: boolean;
@@ -2137,7 +2138,7 @@ declare const EnhancedSelect: {
2137
2138
  [key: string]: React.ReactInstance;
2138
2139
  };
2139
2140
  componentDidMount?(): void;
2140
- shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2141
+ shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2141
2142
  multiple: boolean;
2142
2143
  clearable: boolean;
2143
2144
  creatable: boolean;
@@ -2163,7 +2164,7 @@ declare const EnhancedSelect: {
2163
2164
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
2164
2165
  componentWillUnmount?(): void;
2165
2166
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
2166
- getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2167
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2167
2168
  multiple: boolean;
2168
2169
  clearable: boolean;
2169
2170
  creatable: boolean;
@@ -2187,7 +2188,7 @@ declare const EnhancedSelect: {
2187
2188
  locale?: string | undefined;
2188
2189
  translate?: ((str: string, ...args: any[]) => string) | undefined;
2189
2190
  }>, prevState: Readonly<{}>): any;
2190
- componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2191
+ componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2191
2192
  multiple: boolean;
2192
2193
  clearable: boolean;
2193
2194
  creatable: boolean;
@@ -2213,7 +2214,7 @@ declare const EnhancedSelect: {
2213
2214
  }>, prevState: Readonly<{}>, snapshot?: any): void;
2214
2215
  componentWillMount?(): void;
2215
2216
  UNSAFE_componentWillMount?(): void;
2216
- componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2217
+ componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2217
2218
  multiple: boolean;
2218
2219
  clearable: boolean;
2219
2220
  creatable: boolean;
@@ -2237,7 +2238,7 @@ declare const EnhancedSelect: {
2237
2238
  locale?: string | undefined;
2238
2239
  translate?: ((str: string, ...args: any[]) => string) | undefined;
2239
2240
  }>, nextContext: any): void;
2240
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2241
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2241
2242
  multiple: boolean;
2242
2243
  clearable: boolean;
2243
2244
  creatable: boolean;
@@ -2261,7 +2262,7 @@ declare const EnhancedSelect: {
2261
2262
  locale?: string | undefined;
2262
2263
  translate?: ((str: string, ...args: any[]) => string) | undefined;
2263
2264
  }>, nextContext: any): void;
2264
- componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2265
+ componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2265
2266
  multiple: boolean;
2266
2267
  clearable: boolean;
2267
2268
  creatable: boolean;
@@ -2285,7 +2286,7 @@ declare const EnhancedSelect: {
2285
2286
  locale?: string | undefined;
2286
2287
  translate?: ((str: string, ...args: any[]) => string) | undefined;
2287
2288
  }>, nextState: Readonly<{}>, nextContext: any): void;
2288
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2289
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2289
2290
  multiple: boolean;
2290
2291
  clearable: boolean;
2291
2292
  creatable: boolean;
@@ -2319,7 +2320,7 @@ declare const EnhancedSelect: {
2319
2320
  };
2320
2321
  export default EnhancedSelect;
2321
2322
  export declare const SelectWithRemoteOptions: {
2322
- new (props: Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2323
+ new (props: Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2323
2324
  multiple: boolean;
2324
2325
  clearable: boolean;
2325
2326
  creatable: boolean;
@@ -2364,7 +2365,7 @@ export declare const SelectWithRemoteOptions: {
2364
2365
  setData(data: any): void;
2365
2366
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
2366
2367
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2367
- }, "store"> | Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2368
+ }, "store"> | Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2368
2369
  multiple: boolean;
2369
2370
  clearable: boolean;
2370
2371
  creatable: boolean;
@@ -2437,7 +2438,7 @@ export declare const SelectWithRemoteOptions: {
2437
2438
  getWrappedInstance(): any;
2438
2439
  render(): JSX.Element;
2439
2440
  context: any;
2440
- setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2441
+ setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2441
2442
  multiple: boolean;
2442
2443
  clearable: boolean;
2443
2444
  creatable: boolean;
@@ -2484,7 +2485,7 @@ export declare const SelectWithRemoteOptions: {
2484
2485
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2485
2486
  }, "store">>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
2486
2487
  forceUpdate(callback?: (() => void) | undefined): void;
2487
- readonly props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2488
+ readonly props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2488
2489
  multiple: boolean;
2489
2490
  clearable: boolean;
2490
2491
  creatable: boolean;
@@ -2537,7 +2538,7 @@ export declare const SelectWithRemoteOptions: {
2537
2538
  [key: string]: React.ReactInstance;
2538
2539
  };
2539
2540
  componentDidMount?(): void;
2540
- shouldComponentUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2541
+ shouldComponentUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2541
2542
  multiple: boolean;
2542
2543
  clearable: boolean;
2543
2544
  creatable: boolean;
@@ -2584,7 +2585,7 @@ export declare const SelectWithRemoteOptions: {
2584
2585
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2585
2586
  }, "store">>, nextState: Readonly<{}>, nextContext: any): boolean;
2586
2587
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
2587
- getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2588
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2588
2589
  multiple: boolean;
2589
2590
  clearable: boolean;
2590
2591
  creatable: boolean;
@@ -2630,7 +2631,7 @@ export declare const SelectWithRemoteOptions: {
2630
2631
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
2631
2632
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2632
2633
  }, "store">>, prevState: Readonly<{}>): any;
2633
- componentDidUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2634
+ componentDidUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2634
2635
  multiple: boolean;
2635
2636
  clearable: boolean;
2636
2637
  creatable: boolean;
@@ -2678,7 +2679,7 @@ export declare const SelectWithRemoteOptions: {
2678
2679
  }, "store">>, prevState: Readonly<{}>, snapshot?: any): void;
2679
2680
  componentWillMount?(): void;
2680
2681
  UNSAFE_componentWillMount?(): void;
2681
- componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2682
+ componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2682
2683
  multiple: boolean;
2683
2684
  clearable: boolean;
2684
2685
  creatable: boolean;
@@ -2724,7 +2725,7 @@ export declare const SelectWithRemoteOptions: {
2724
2725
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
2725
2726
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2726
2727
  }, "store">>, nextContext: any): void;
2727
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2728
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2728
2729
  multiple: boolean;
2729
2730
  clearable: boolean;
2730
2731
  creatable: boolean;
@@ -2770,7 +2771,7 @@ export declare const SelectWithRemoteOptions: {
2770
2771
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
2771
2772
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2772
2773
  }, "store">>, nextContext: any): void;
2773
- componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2774
+ componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2774
2775
  multiple: boolean;
2775
2776
  clearable: boolean;
2776
2777
  creatable: boolean;
@@ -2816,7 +2817,7 @@ export declare const SelectWithRemoteOptions: {
2816
2817
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
2817
2818
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2818
2819
  }, "store">>, nextState: Readonly<{}>, nextContext: any): void;
2819
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2820
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2820
2821
  multiple: boolean;
2821
2822
  clearable: boolean;
2822
2823
  creatable: boolean;
@@ -2863,7 +2864,7 @@ export declare const SelectWithRemoteOptions: {
2863
2864
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2864
2865
  }, "store">>, nextState: Readonly<{}>, nextContext: any): void;
2865
2866
  };
2866
- new (props: Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2867
+ new (props: Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2867
2868
  multiple: boolean;
2868
2869
  clearable: boolean;
2869
2870
  creatable: boolean;
@@ -2936,7 +2937,7 @@ export declare const SelectWithRemoteOptions: {
2936
2937
  getWrappedInstance(): any;
2937
2938
  render(): JSX.Element;
2938
2939
  context: any;
2939
- setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2940
+ setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2940
2941
  multiple: boolean;
2941
2942
  clearable: boolean;
2942
2943
  creatable: boolean;
@@ -2983,7 +2984,7 @@ export declare const SelectWithRemoteOptions: {
2983
2984
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2984
2985
  }, "store">>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
2985
2986
  forceUpdate(callback?: (() => void) | undefined): void;
2986
- readonly props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2987
+ readonly props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
2987
2988
  multiple: boolean;
2988
2989
  clearable: boolean;
2989
2990
  creatable: boolean;
@@ -3036,7 +3037,7 @@ export declare const SelectWithRemoteOptions: {
3036
3037
  [key: string]: React.ReactInstance;
3037
3038
  };
3038
3039
  componentDidMount?(): void;
3039
- shouldComponentUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3040
+ shouldComponentUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3040
3041
  multiple: boolean;
3041
3042
  clearable: boolean;
3042
3043
  creatable: boolean;
@@ -3083,7 +3084,7 @@ export declare const SelectWithRemoteOptions: {
3083
3084
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3084
3085
  }, "store">>, nextState: Readonly<{}>, nextContext: any): boolean;
3085
3086
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
3086
- getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3087
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3087
3088
  multiple: boolean;
3088
3089
  clearable: boolean;
3089
3090
  creatable: boolean;
@@ -3129,7 +3130,7 @@ export declare const SelectWithRemoteOptions: {
3129
3130
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
3130
3131
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3131
3132
  }, "store">>, prevState: Readonly<{}>): any;
3132
- componentDidUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3133
+ componentDidUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3133
3134
  multiple: boolean;
3134
3135
  clearable: boolean;
3135
3136
  creatable: boolean;
@@ -3177,7 +3178,7 @@ export declare const SelectWithRemoteOptions: {
3177
3178
  }, "store">>, prevState: Readonly<{}>, snapshot?: any): void;
3178
3179
  componentWillMount?(): void;
3179
3180
  UNSAFE_componentWillMount?(): void;
3180
- componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3181
+ componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3181
3182
  multiple: boolean;
3182
3183
  clearable: boolean;
3183
3184
  creatable: boolean;
@@ -3223,7 +3224,7 @@ export declare const SelectWithRemoteOptions: {
3223
3224
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
3224
3225
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3225
3226
  }, "store">>, nextContext: any): void;
3226
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3227
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3227
3228
  multiple: boolean;
3228
3229
  clearable: boolean;
3229
3230
  creatable: boolean;
@@ -3269,7 +3270,7 @@ export declare const SelectWithRemoteOptions: {
3269
3270
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
3270
3271
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3271
3272
  }, "store">>, nextContext: any): void;
3272
- componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3273
+ componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3273
3274
  multiple: boolean;
3274
3275
  clearable: boolean;
3275
3276
  creatable: boolean;
@@ -3315,7 +3316,7 @@ export declare const SelectWithRemoteOptions: {
3315
3316
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
3316
3317
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3317
3318
  }, "store">>, nextState: Readonly<{}>, nextContext: any): void;
3318
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3319
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3319
3320
  multiple: boolean;
3320
3321
  clearable: boolean;
3321
3322
  creatable: boolean;
@@ -3364,7 +3365,7 @@ export declare const SelectWithRemoteOptions: {
3364
3365
  };
3365
3366
  displayName: string;
3366
3367
  ComposedComponent: React.ComponentType<{
3367
- new (props: Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3368
+ new (props: Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3368
3369
  multiple: boolean;
3369
3370
  clearable: boolean;
3370
3371
  creatable: boolean;
@@ -3420,7 +3421,7 @@ export declare const SelectWithRemoteOptions: {
3420
3421
  deferLoadConfig(item: any): Promise<void>;
3421
3422
  render(): JSX.Element;
3422
3423
  context: any;
3423
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3424
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3424
3425
  multiple: boolean;
3425
3426
  clearable: boolean;
3426
3427
  creatable: boolean;
@@ -3467,7 +3468,7 @@ export declare const SelectWithRemoteOptions: {
3467
3468
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3468
3469
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
3469
3470
  forceUpdate(callback?: (() => void) | undefined): void;
3470
- readonly props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3471
+ readonly props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3471
3472
  multiple: boolean;
3472
3473
  clearable: boolean;
3473
3474
  creatable: boolean;
@@ -3519,7 +3520,7 @@ export declare const SelectWithRemoteOptions: {
3519
3520
  refs: {
3520
3521
  [key: string]: React.ReactInstance;
3521
3522
  };
3522
- shouldComponentUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3523
+ shouldComponentUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3523
3524
  multiple: boolean;
3524
3525
  clearable: boolean;
3525
3526
  creatable: boolean;
@@ -3566,7 +3567,7 @@ export declare const SelectWithRemoteOptions: {
3566
3567
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3567
3568
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
3568
3569
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
3569
- getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3570
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3570
3571
  multiple: boolean;
3571
3572
  clearable: boolean;
3572
3573
  creatable: boolean;
@@ -3614,7 +3615,7 @@ export declare const SelectWithRemoteOptions: {
3614
3615
  }>, prevState: Readonly<{}>): any;
3615
3616
  componentWillMount?(): void;
3616
3617
  UNSAFE_componentWillMount?(): void;
3617
- componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3618
+ componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3618
3619
  multiple: boolean;
3619
3620
  clearable: boolean;
3620
3621
  creatable: boolean;
@@ -3660,7 +3661,7 @@ export declare const SelectWithRemoteOptions: {
3660
3661
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
3661
3662
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3662
3663
  }>, nextContext: any): void;
3663
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3664
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3664
3665
  multiple: boolean;
3665
3666
  clearable: boolean;
3666
3667
  creatable: boolean;
@@ -3706,7 +3707,7 @@ export declare const SelectWithRemoteOptions: {
3706
3707
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
3707
3708
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3708
3709
  }>, nextContext: any): void;
3709
- componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3710
+ componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3710
3711
  multiple: boolean;
3711
3712
  clearable: boolean;
3712
3713
  creatable: boolean;
@@ -3752,7 +3753,7 @@ export declare const SelectWithRemoteOptions: {
3752
3753
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
3753
3754
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3754
3755
  }>, nextState: Readonly<{}>, nextContext: any): void;
3755
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3756
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3756
3757
  multiple: boolean;
3757
3758
  clearable: boolean;
3758
3759
  creatable: boolean;
@@ -3801,7 +3802,7 @@ export declare const SelectWithRemoteOptions: {
3801
3802
  };
3802
3803
  displayName: string;
3803
3804
  ComposedComponent: React.ComponentType<{
3804
- new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3805
+ new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3805
3806
  multiple: boolean;
3806
3807
  clearable: boolean;
3807
3808
  creatable: boolean;
@@ -3824,7 +3825,7 @@ export declare const SelectWithRemoteOptions: {
3824
3825
  }, never>> & {
3825
3826
  locale?: string | undefined;
3826
3827
  translate?: ((str: string, ...args: any[]) => string) | undefined;
3827
- }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3828
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3828
3829
  multiple: boolean;
3829
3830
  clearable: boolean;
3830
3831
  creatable: boolean;
@@ -3850,7 +3851,7 @@ export declare const SelectWithRemoteOptions: {
3850
3851
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
3851
3852
  render(): JSX.Element;
3852
3853
  context: any;
3853
- setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3854
+ setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3854
3855
  multiple: boolean;
3855
3856
  clearable: boolean;
3856
3857
  creatable: boolean;
@@ -3875,7 +3876,7 @@ export declare const SelectWithRemoteOptions: {
3875
3876
  translate?: ((str: string, ...args: any[]) => string) | undefined;
3876
3877
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
3877
3878
  forceUpdate(callback?: (() => void) | undefined): void;
3878
- readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3879
+ readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3879
3880
  multiple: boolean;
3880
3881
  clearable: boolean;
3881
3882
  creatable: boolean;
@@ -3906,7 +3907,7 @@ export declare const SelectWithRemoteOptions: {
3906
3907
  [key: string]: React.ReactInstance;
3907
3908
  };
3908
3909
  componentDidMount?(): void;
3909
- shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3910
+ shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3910
3911
  multiple: boolean;
3911
3912
  clearable: boolean;
3912
3913
  creatable: boolean;
@@ -3932,7 +3933,7 @@ export declare const SelectWithRemoteOptions: {
3932
3933
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
3933
3934
  componentWillUnmount?(): void;
3934
3935
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
3935
- getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3936
+ getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3936
3937
  multiple: boolean;
3937
3938
  clearable: boolean;
3938
3939
  creatable: boolean;
@@ -3956,7 +3957,7 @@ export declare const SelectWithRemoteOptions: {
3956
3957
  locale?: string | undefined;
3957
3958
  translate?: ((str: string, ...args: any[]) => string) | undefined;
3958
3959
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
3959
- componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3960
+ componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3960
3961
  multiple: boolean;
3961
3962
  clearable: boolean;
3962
3963
  creatable: boolean;
@@ -3982,7 +3983,7 @@ export declare const SelectWithRemoteOptions: {
3982
3983
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
3983
3984
  componentWillMount?(): void;
3984
3985
  UNSAFE_componentWillMount?(): void;
3985
- componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3986
+ componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
3986
3987
  multiple: boolean;
3987
3988
  clearable: boolean;
3988
3989
  creatable: boolean;
@@ -4006,7 +4007,7 @@ export declare const SelectWithRemoteOptions: {
4006
4007
  locale?: string | undefined;
4007
4008
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4008
4009
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
4009
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4010
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4010
4011
  multiple: boolean;
4011
4012
  clearable: boolean;
4012
4013
  creatable: boolean;
@@ -4030,7 +4031,7 @@ export declare const SelectWithRemoteOptions: {
4030
4031
  locale?: string | undefined;
4031
4032
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4032
4033
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
4033
- componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4034
+ componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4034
4035
  multiple: boolean;
4035
4036
  clearable: boolean;
4036
4037
  creatable: boolean;
@@ -4054,7 +4055,7 @@ export declare const SelectWithRemoteOptions: {
4054
4055
  locale?: string | undefined;
4055
4056
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4056
4057
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
4057
- UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4058
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4058
4059
  multiple: boolean;
4059
4060
  clearable: boolean;
4060
4061
  creatable: boolean;
@@ -4079,7 +4080,7 @@ export declare const SelectWithRemoteOptions: {
4079
4080
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4080
4081
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
4081
4082
  };
4082
- new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4083
+ new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4083
4084
  multiple: boolean;
4084
4085
  clearable: boolean;
4085
4086
  creatable: boolean;
@@ -4105,7 +4106,7 @@ export declare const SelectWithRemoteOptions: {
4105
4106
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
4106
4107
  render(): JSX.Element;
4107
4108
  context: any;
4108
- setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4109
+ setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4109
4110
  multiple: boolean;
4110
4111
  clearable: boolean;
4111
4112
  creatable: boolean;
@@ -4130,7 +4131,7 @@ export declare const SelectWithRemoteOptions: {
4130
4131
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4131
4132
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
4132
4133
  forceUpdate(callback?: (() => void) | undefined): void;
4133
- readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4134
+ readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4134
4135
  multiple: boolean;
4135
4136
  clearable: boolean;
4136
4137
  creatable: boolean;
@@ -4161,7 +4162,7 @@ export declare const SelectWithRemoteOptions: {
4161
4162
  [key: string]: React.ReactInstance;
4162
4163
  };
4163
4164
  componentDidMount?(): void;
4164
- shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4165
+ shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4165
4166
  multiple: boolean;
4166
4167
  clearable: boolean;
4167
4168
  creatable: boolean;
@@ -4187,7 +4188,7 @@ export declare const SelectWithRemoteOptions: {
4187
4188
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
4188
4189
  componentWillUnmount?(): void;
4189
4190
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
4190
- getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4191
+ getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4191
4192
  multiple: boolean;
4192
4193
  clearable: boolean;
4193
4194
  creatable: boolean;
@@ -4211,7 +4212,7 @@ export declare const SelectWithRemoteOptions: {
4211
4212
  locale?: string | undefined;
4212
4213
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4213
4214
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
4214
- componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4215
+ componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4215
4216
  multiple: boolean;
4216
4217
  clearable: boolean;
4217
4218
  creatable: boolean;
@@ -4237,7 +4238,7 @@ export declare const SelectWithRemoteOptions: {
4237
4238
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
4238
4239
  componentWillMount?(): void;
4239
4240
  UNSAFE_componentWillMount?(): void;
4240
- componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4241
+ componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4241
4242
  multiple: boolean;
4242
4243
  clearable: boolean;
4243
4244
  creatable: boolean;
@@ -4261,7 +4262,7 @@ export declare const SelectWithRemoteOptions: {
4261
4262
  locale?: string | undefined;
4262
4263
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4263
4264
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
4264
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4265
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4265
4266
  multiple: boolean;
4266
4267
  clearable: boolean;
4267
4268
  creatable: boolean;
@@ -4285,7 +4286,7 @@ export declare const SelectWithRemoteOptions: {
4285
4286
  locale?: string | undefined;
4286
4287
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4287
4288
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
4288
- componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4289
+ componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4289
4290
  multiple: boolean;
4290
4291
  clearable: boolean;
4291
4292
  creatable: boolean;
@@ -4309,7 +4310,7 @@ export declare const SelectWithRemoteOptions: {
4309
4310
  locale?: string | undefined;
4310
4311
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4311
4312
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
4312
- UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4313
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4313
4314
  multiple: boolean;
4314
4315
  clearable: boolean;
4315
4316
  creatable: boolean;
@@ -4340,7 +4341,7 @@ export declare const SelectWithRemoteOptions: {
4340
4341
  }>;
4341
4342
  contextType?: React.Context<any> | undefined;
4342
4343
  } & import("hoist-non-react-statics").NonReactStatics<{
4343
- new (props: Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4344
+ new (props: Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4344
4345
  multiple: boolean;
4345
4346
  clearable: boolean;
4346
4347
  creatable: boolean;
@@ -4396,7 +4397,7 @@ export declare const SelectWithRemoteOptions: {
4396
4397
  deferLoadConfig(item: any): Promise<void>;
4397
4398
  render(): JSX.Element;
4398
4399
  context: any;
4399
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4400
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4400
4401
  multiple: boolean;
4401
4402
  clearable: boolean;
4402
4403
  creatable: boolean;
@@ -4443,7 +4444,7 @@ export declare const SelectWithRemoteOptions: {
4443
4444
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
4444
4445
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
4445
4446
  forceUpdate(callback?: (() => void) | undefined): void;
4446
- readonly props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4447
+ readonly props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4447
4448
  multiple: boolean;
4448
4449
  clearable: boolean;
4449
4450
  creatable: boolean;
@@ -4495,7 +4496,7 @@ export declare const SelectWithRemoteOptions: {
4495
4496
  refs: {
4496
4497
  [key: string]: React.ReactInstance;
4497
4498
  };
4498
- shouldComponentUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4499
+ shouldComponentUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4499
4500
  multiple: boolean;
4500
4501
  clearable: boolean;
4501
4502
  creatable: boolean;
@@ -4542,7 +4543,7 @@ export declare const SelectWithRemoteOptions: {
4542
4543
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
4543
4544
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
4544
4545
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
4545
- getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4546
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4546
4547
  multiple: boolean;
4547
4548
  clearable: boolean;
4548
4549
  creatable: boolean;
@@ -4590,7 +4591,7 @@ export declare const SelectWithRemoteOptions: {
4590
4591
  }>, prevState: Readonly<{}>): any;
4591
4592
  componentWillMount?(): void;
4592
4593
  UNSAFE_componentWillMount?(): void;
4593
- componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4594
+ componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4594
4595
  multiple: boolean;
4595
4596
  clearable: boolean;
4596
4597
  creatable: boolean;
@@ -4636,7 +4637,7 @@ export declare const SelectWithRemoteOptions: {
4636
4637
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
4637
4638
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
4638
4639
  }>, nextContext: any): void;
4639
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4640
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4640
4641
  multiple: boolean;
4641
4642
  clearable: boolean;
4642
4643
  creatable: boolean;
@@ -4682,7 +4683,7 @@ export declare const SelectWithRemoteOptions: {
4682
4683
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
4683
4684
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
4684
4685
  }>, nextContext: any): void;
4685
- componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4686
+ componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4686
4687
  multiple: boolean;
4687
4688
  clearable: boolean;
4688
4689
  creatable: boolean;
@@ -4728,7 +4729,7 @@ export declare const SelectWithRemoteOptions: {
4728
4729
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
4729
4730
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
4730
4731
  }>, nextState: Readonly<{}>, nextContext: any): void;
4731
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4732
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4732
4733
  multiple: boolean;
4733
4734
  clearable: boolean;
4734
4735
  creatable: boolean;
@@ -4777,7 +4778,7 @@ export declare const SelectWithRemoteOptions: {
4777
4778
  };
4778
4779
  displayName: string;
4779
4780
  ComposedComponent: React.ComponentType<{
4780
- new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4781
+ new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4781
4782
  multiple: boolean;
4782
4783
  clearable: boolean;
4783
4784
  creatable: boolean;
@@ -4800,7 +4801,7 @@ export declare const SelectWithRemoteOptions: {
4800
4801
  }, never>> & {
4801
4802
  locale?: string | undefined;
4802
4803
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4803
- }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4804
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4804
4805
  multiple: boolean;
4805
4806
  clearable: boolean;
4806
4807
  creatable: boolean;
@@ -4826,7 +4827,7 @@ export declare const SelectWithRemoteOptions: {
4826
4827
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
4827
4828
  render(): JSX.Element;
4828
4829
  context: any;
4829
- setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4830
+ setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4830
4831
  multiple: boolean;
4831
4832
  clearable: boolean;
4832
4833
  creatable: boolean;
@@ -4851,7 +4852,7 @@ export declare const SelectWithRemoteOptions: {
4851
4852
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4852
4853
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
4853
4854
  forceUpdate(callback?: (() => void) | undefined): void;
4854
- readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4855
+ readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4855
4856
  multiple: boolean;
4856
4857
  clearable: boolean;
4857
4858
  creatable: boolean;
@@ -4882,7 +4883,7 @@ export declare const SelectWithRemoteOptions: {
4882
4883
  [key: string]: React.ReactInstance;
4883
4884
  };
4884
4885
  componentDidMount?(): void;
4885
- shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4886
+ shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4886
4887
  multiple: boolean;
4887
4888
  clearable: boolean;
4888
4889
  creatable: boolean;
@@ -4908,7 +4909,7 @@ export declare const SelectWithRemoteOptions: {
4908
4909
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
4909
4910
  componentWillUnmount?(): void;
4910
4911
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
4911
- getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4912
+ getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4912
4913
  multiple: boolean;
4913
4914
  clearable: boolean;
4914
4915
  creatable: boolean;
@@ -4932,7 +4933,7 @@ export declare const SelectWithRemoteOptions: {
4932
4933
  locale?: string | undefined;
4933
4934
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4934
4935
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
4935
- componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4936
+ componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4936
4937
  multiple: boolean;
4937
4938
  clearable: boolean;
4938
4939
  creatable: boolean;
@@ -4958,7 +4959,7 @@ export declare const SelectWithRemoteOptions: {
4958
4959
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
4959
4960
  componentWillMount?(): void;
4960
4961
  UNSAFE_componentWillMount?(): void;
4961
- componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4962
+ componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4962
4963
  multiple: boolean;
4963
4964
  clearable: boolean;
4964
4965
  creatable: boolean;
@@ -4982,7 +4983,7 @@ export declare const SelectWithRemoteOptions: {
4982
4983
  locale?: string | undefined;
4983
4984
  translate?: ((str: string, ...args: any[]) => string) | undefined;
4984
4985
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
4985
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4986
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
4986
4987
  multiple: boolean;
4987
4988
  clearable: boolean;
4988
4989
  creatable: boolean;
@@ -5006,7 +5007,7 @@ export declare const SelectWithRemoteOptions: {
5006
5007
  locale?: string | undefined;
5007
5008
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5008
5009
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
5009
- componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5010
+ componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5010
5011
  multiple: boolean;
5011
5012
  clearable: boolean;
5012
5013
  creatable: boolean;
@@ -5030,7 +5031,7 @@ export declare const SelectWithRemoteOptions: {
5030
5031
  locale?: string | undefined;
5031
5032
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5032
5033
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
5033
- UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5034
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5034
5035
  multiple: boolean;
5035
5036
  clearable: boolean;
5036
5037
  creatable: boolean;
@@ -5055,7 +5056,7 @@ export declare const SelectWithRemoteOptions: {
5055
5056
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5056
5057
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
5057
5058
  };
5058
- new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5059
+ new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5059
5060
  multiple: boolean;
5060
5061
  clearable: boolean;
5061
5062
  creatable: boolean;
@@ -5081,7 +5082,7 @@ export declare const SelectWithRemoteOptions: {
5081
5082
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
5082
5083
  render(): JSX.Element;
5083
5084
  context: any;
5084
- setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5085
+ setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5085
5086
  multiple: boolean;
5086
5087
  clearable: boolean;
5087
5088
  creatable: boolean;
@@ -5106,7 +5107,7 @@ export declare const SelectWithRemoteOptions: {
5106
5107
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5107
5108
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
5108
5109
  forceUpdate(callback?: (() => void) | undefined): void;
5109
- readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5110
+ readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5110
5111
  multiple: boolean;
5111
5112
  clearable: boolean;
5112
5113
  creatable: boolean;
@@ -5137,7 +5138,7 @@ export declare const SelectWithRemoteOptions: {
5137
5138
  [key: string]: React.ReactInstance;
5138
5139
  };
5139
5140
  componentDidMount?(): void;
5140
- shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5141
+ shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5141
5142
  multiple: boolean;
5142
5143
  clearable: boolean;
5143
5144
  creatable: boolean;
@@ -5163,7 +5164,7 @@ export declare const SelectWithRemoteOptions: {
5163
5164
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
5164
5165
  componentWillUnmount?(): void;
5165
5166
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
5166
- getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5167
+ getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5167
5168
  multiple: boolean;
5168
5169
  clearable: boolean;
5169
5170
  creatable: boolean;
@@ -5187,7 +5188,7 @@ export declare const SelectWithRemoteOptions: {
5187
5188
  locale?: string | undefined;
5188
5189
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5189
5190
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
5190
- componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5191
+ componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5191
5192
  multiple: boolean;
5192
5193
  clearable: boolean;
5193
5194
  creatable: boolean;
@@ -5213,7 +5214,7 @@ export declare const SelectWithRemoteOptions: {
5213
5214
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
5214
5215
  componentWillMount?(): void;
5215
5216
  UNSAFE_componentWillMount?(): void;
5216
- componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5217
+ componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5217
5218
  multiple: boolean;
5218
5219
  clearable: boolean;
5219
5220
  creatable: boolean;
@@ -5237,7 +5238,7 @@ export declare const SelectWithRemoteOptions: {
5237
5238
  locale?: string | undefined;
5238
5239
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5239
5240
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
5240
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5241
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5241
5242
  multiple: boolean;
5242
5243
  clearable: boolean;
5243
5244
  creatable: boolean;
@@ -5261,7 +5262,7 @@ export declare const SelectWithRemoteOptions: {
5261
5262
  locale?: string | undefined;
5262
5263
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5263
5264
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
5264
- componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5265
+ componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5265
5266
  multiple: boolean;
5266
5267
  clearable: boolean;
5267
5268
  creatable: boolean;
@@ -5285,7 +5286,7 @@ export declare const SelectWithRemoteOptions: {
5285
5286
  locale?: string | undefined;
5286
5287
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5287
5288
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
5288
- UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5289
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5289
5290
  multiple: boolean;
5290
5291
  clearable: boolean;
5291
5292
  creatable: boolean;
@@ -5315,7 +5316,7 @@ export declare const SelectWithRemoteOptions: {
5315
5316
  contextType: React.Context<void | import("../env").RendererEnv>;
5316
5317
  }, {}> & {
5317
5318
  ComposedComponent: {
5318
- new (props: Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5319
+ new (props: Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5319
5320
  multiple: boolean;
5320
5321
  clearable: boolean;
5321
5322
  creatable: boolean;
@@ -5371,7 +5372,7 @@ export declare const SelectWithRemoteOptions: {
5371
5372
  deferLoadConfig(item: any): Promise<void>;
5372
5373
  render(): JSX.Element;
5373
5374
  context: any;
5374
- setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5375
+ setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5375
5376
  multiple: boolean;
5376
5377
  clearable: boolean;
5377
5378
  creatable: boolean;
@@ -5418,7 +5419,7 @@ export declare const SelectWithRemoteOptions: {
5418
5419
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
5419
5420
  }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
5420
5421
  forceUpdate(callback?: (() => void) | undefined): void;
5421
- readonly props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5422
+ readonly props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5422
5423
  multiple: boolean;
5423
5424
  clearable: boolean;
5424
5425
  creatable: boolean;
@@ -5470,7 +5471,7 @@ export declare const SelectWithRemoteOptions: {
5470
5471
  refs: {
5471
5472
  [key: string]: React.ReactInstance;
5472
5473
  };
5473
- shouldComponentUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5474
+ shouldComponentUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5474
5475
  multiple: boolean;
5475
5476
  clearable: boolean;
5476
5477
  creatable: boolean;
@@ -5517,7 +5518,7 @@ export declare const SelectWithRemoteOptions: {
5517
5518
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
5518
5519
  }>, nextState: Readonly<{}>, nextContext: any): boolean;
5519
5520
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
5520
- getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5521
+ getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5521
5522
  multiple: boolean;
5522
5523
  clearable: boolean;
5523
5524
  creatable: boolean;
@@ -5565,7 +5566,7 @@ export declare const SelectWithRemoteOptions: {
5565
5566
  }>, prevState: Readonly<{}>): any;
5566
5567
  componentWillMount?(): void;
5567
5568
  UNSAFE_componentWillMount?(): void;
5568
- componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5569
+ componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5569
5570
  multiple: boolean;
5570
5571
  clearable: boolean;
5571
5572
  creatable: boolean;
@@ -5611,7 +5612,7 @@ export declare const SelectWithRemoteOptions: {
5611
5612
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
5612
5613
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
5613
5614
  }>, nextContext: any): void;
5614
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5615
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5615
5616
  multiple: boolean;
5616
5617
  clearable: boolean;
5617
5618
  creatable: boolean;
@@ -5657,7 +5658,7 @@ export declare const SelectWithRemoteOptions: {
5657
5658
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
5658
5659
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
5659
5660
  }>, nextContext: any): void;
5660
- componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5661
+ componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5661
5662
  multiple: boolean;
5662
5663
  clearable: boolean;
5663
5664
  creatable: boolean;
@@ -5703,7 +5704,7 @@ export declare const SelectWithRemoteOptions: {
5703
5704
  setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
5704
5705
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
5705
5706
  }>, nextState: Readonly<{}>, nextContext: any): void;
5706
- UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5707
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5707
5708
  multiple: boolean;
5708
5709
  clearable: boolean;
5709
5710
  creatable: boolean;
@@ -5752,7 +5753,7 @@ export declare const SelectWithRemoteOptions: {
5752
5753
  };
5753
5754
  displayName: string;
5754
5755
  ComposedComponent: React.ComponentType<{
5755
- new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5756
+ new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5756
5757
  multiple: boolean;
5757
5758
  clearable: boolean;
5758
5759
  creatable: boolean;
@@ -5775,7 +5776,7 @@ export declare const SelectWithRemoteOptions: {
5775
5776
  }, never>> & {
5776
5777
  locale?: string | undefined;
5777
5778
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5778
- }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5779
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5779
5780
  multiple: boolean;
5780
5781
  clearable: boolean;
5781
5782
  creatable: boolean;
@@ -5801,7 +5802,7 @@ export declare const SelectWithRemoteOptions: {
5801
5802
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
5802
5803
  render(): JSX.Element;
5803
5804
  context: any;
5804
- setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5805
+ setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5805
5806
  multiple: boolean;
5806
5807
  clearable: boolean;
5807
5808
  creatable: boolean;
@@ -5826,7 +5827,7 @@ export declare const SelectWithRemoteOptions: {
5826
5827
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5827
5828
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
5828
5829
  forceUpdate(callback?: (() => void) | undefined): void;
5829
- readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5830
+ readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5830
5831
  multiple: boolean;
5831
5832
  clearable: boolean;
5832
5833
  creatable: boolean;
@@ -5857,7 +5858,7 @@ export declare const SelectWithRemoteOptions: {
5857
5858
  [key: string]: React.ReactInstance;
5858
5859
  };
5859
5860
  componentDidMount?(): void;
5860
- shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5861
+ shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5861
5862
  multiple: boolean;
5862
5863
  clearable: boolean;
5863
5864
  creatable: boolean;
@@ -5883,7 +5884,7 @@ export declare const SelectWithRemoteOptions: {
5883
5884
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
5884
5885
  componentWillUnmount?(): void;
5885
5886
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
5886
- getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5887
+ getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5887
5888
  multiple: boolean;
5888
5889
  clearable: boolean;
5889
5890
  creatable: boolean;
@@ -5907,7 +5908,7 @@ export declare const SelectWithRemoteOptions: {
5907
5908
  locale?: string | undefined;
5908
5909
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5909
5910
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
5910
- componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5911
+ componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5911
5912
  multiple: boolean;
5912
5913
  clearable: boolean;
5913
5914
  creatable: boolean;
@@ -5933,7 +5934,7 @@ export declare const SelectWithRemoteOptions: {
5933
5934
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
5934
5935
  componentWillMount?(): void;
5935
5936
  UNSAFE_componentWillMount?(): void;
5936
- componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5937
+ componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5937
5938
  multiple: boolean;
5938
5939
  clearable: boolean;
5939
5940
  creatable: boolean;
@@ -5957,7 +5958,7 @@ export declare const SelectWithRemoteOptions: {
5957
5958
  locale?: string | undefined;
5958
5959
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5959
5960
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
5960
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5961
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5961
5962
  multiple: boolean;
5962
5963
  clearable: boolean;
5963
5964
  creatable: boolean;
@@ -5981,7 +5982,7 @@ export declare const SelectWithRemoteOptions: {
5981
5982
  locale?: string | undefined;
5982
5983
  translate?: ((str: string, ...args: any[]) => string) | undefined;
5983
5984
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
5984
- componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5985
+ componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
5985
5986
  multiple: boolean;
5986
5987
  clearable: boolean;
5987
5988
  creatable: boolean;
@@ -6005,7 +6006,7 @@ export declare const SelectWithRemoteOptions: {
6005
6006
  locale?: string | undefined;
6006
6007
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6007
6008
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
6008
- UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6009
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6009
6010
  multiple: boolean;
6010
6011
  clearable: boolean;
6011
6012
  creatable: boolean;
@@ -6030,7 +6031,7 @@ export declare const SelectWithRemoteOptions: {
6030
6031
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6031
6032
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
6032
6033
  };
6033
- new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6034
+ new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6034
6035
  multiple: boolean;
6035
6036
  clearable: boolean;
6036
6037
  creatable: boolean;
@@ -6056,7 +6057,7 @@ export declare const SelectWithRemoteOptions: {
6056
6057
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
6057
6058
  render(): JSX.Element;
6058
6059
  context: any;
6059
- setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6060
+ setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6060
6061
  multiple: boolean;
6061
6062
  clearable: boolean;
6062
6063
  creatable: boolean;
@@ -6081,7 +6082,7 @@ export declare const SelectWithRemoteOptions: {
6081
6082
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6082
6083
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
6083
6084
  forceUpdate(callback?: (() => void) | undefined): void;
6084
- readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6085
+ readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6085
6086
  multiple: boolean;
6086
6087
  clearable: boolean;
6087
6088
  creatable: boolean;
@@ -6112,7 +6113,7 @@ export declare const SelectWithRemoteOptions: {
6112
6113
  [key: string]: React.ReactInstance;
6113
6114
  };
6114
6115
  componentDidMount?(): void;
6115
- shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6116
+ shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6116
6117
  multiple: boolean;
6117
6118
  clearable: boolean;
6118
6119
  creatable: boolean;
@@ -6138,7 +6139,7 @@ export declare const SelectWithRemoteOptions: {
6138
6139
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
6139
6140
  componentWillUnmount?(): void;
6140
6141
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
6141
- getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6142
+ getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6142
6143
  multiple: boolean;
6143
6144
  clearable: boolean;
6144
6145
  creatable: boolean;
@@ -6162,7 +6163,7 @@ export declare const SelectWithRemoteOptions: {
6162
6163
  locale?: string | undefined;
6163
6164
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6164
6165
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
6165
- componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6166
+ componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6166
6167
  multiple: boolean;
6167
6168
  clearable: boolean;
6168
6169
  creatable: boolean;
@@ -6188,7 +6189,7 @@ export declare const SelectWithRemoteOptions: {
6188
6189
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
6189
6190
  componentWillMount?(): void;
6190
6191
  UNSAFE_componentWillMount?(): void;
6191
- componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6192
+ componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6192
6193
  multiple: boolean;
6193
6194
  clearable: boolean;
6194
6195
  creatable: boolean;
@@ -6212,7 +6213,7 @@ export declare const SelectWithRemoteOptions: {
6212
6213
  locale?: string | undefined;
6213
6214
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6214
6215
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
6215
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6216
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6216
6217
  multiple: boolean;
6217
6218
  clearable: boolean;
6218
6219
  creatable: boolean;
@@ -6236,7 +6237,7 @@ export declare const SelectWithRemoteOptions: {
6236
6237
  locale?: string | undefined;
6237
6238
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6238
6239
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
6239
- componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6240
+ componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6240
6241
  multiple: boolean;
6241
6242
  clearable: boolean;
6242
6243
  creatable: boolean;
@@ -6260,7 +6261,7 @@ export declare const SelectWithRemoteOptions: {
6260
6261
  locale?: string | undefined;
6261
6262
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6262
6263
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
6263
- UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6264
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6264
6265
  multiple: boolean;
6265
6266
  clearable: boolean;
6266
6267
  creatable: boolean;
@@ -6290,7 +6291,7 @@ export declare const SelectWithRemoteOptions: {
6290
6291
  contextType: React.Context<void | import("../env").RendererEnv>;
6291
6292
  };
6292
6293
  } & import("hoist-non-react-statics").NonReactStatics<{
6293
- new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6294
+ new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6294
6295
  multiple: boolean;
6295
6296
  clearable: boolean;
6296
6297
  creatable: boolean;
@@ -6313,7 +6314,7 @@ export declare const SelectWithRemoteOptions: {
6313
6314
  }, never>> & {
6314
6315
  locale?: string | undefined;
6315
6316
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6316
- }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6317
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6317
6318
  multiple: boolean;
6318
6319
  clearable: boolean;
6319
6320
  creatable: boolean;
@@ -6339,7 +6340,7 @@ export declare const SelectWithRemoteOptions: {
6339
6340
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
6340
6341
  render(): JSX.Element;
6341
6342
  context: any;
6342
- setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6343
+ setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6343
6344
  multiple: boolean;
6344
6345
  clearable: boolean;
6345
6346
  creatable: boolean;
@@ -6364,7 +6365,7 @@ export declare const SelectWithRemoteOptions: {
6364
6365
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6365
6366
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
6366
6367
  forceUpdate(callback?: (() => void) | undefined): void;
6367
- readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6368
+ readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6368
6369
  multiple: boolean;
6369
6370
  clearable: boolean;
6370
6371
  creatable: boolean;
@@ -6395,7 +6396,7 @@ export declare const SelectWithRemoteOptions: {
6395
6396
  [key: string]: React.ReactInstance;
6396
6397
  };
6397
6398
  componentDidMount?(): void;
6398
- shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6399
+ shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6399
6400
  multiple: boolean;
6400
6401
  clearable: boolean;
6401
6402
  creatable: boolean;
@@ -6421,7 +6422,7 @@ export declare const SelectWithRemoteOptions: {
6421
6422
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
6422
6423
  componentWillUnmount?(): void;
6423
6424
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
6424
- getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6425
+ getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6425
6426
  multiple: boolean;
6426
6427
  clearable: boolean;
6427
6428
  creatable: boolean;
@@ -6445,7 +6446,7 @@ export declare const SelectWithRemoteOptions: {
6445
6446
  locale?: string | undefined;
6446
6447
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6447
6448
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
6448
- componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6449
+ componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6449
6450
  multiple: boolean;
6450
6451
  clearable: boolean;
6451
6452
  creatable: boolean;
@@ -6471,7 +6472,7 @@ export declare const SelectWithRemoteOptions: {
6471
6472
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
6472
6473
  componentWillMount?(): void;
6473
6474
  UNSAFE_componentWillMount?(): void;
6474
- componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6475
+ componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6475
6476
  multiple: boolean;
6476
6477
  clearable: boolean;
6477
6478
  creatable: boolean;
@@ -6495,7 +6496,7 @@ export declare const SelectWithRemoteOptions: {
6495
6496
  locale?: string | undefined;
6496
6497
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6497
6498
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
6498
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6499
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6499
6500
  multiple: boolean;
6500
6501
  clearable: boolean;
6501
6502
  creatable: boolean;
@@ -6519,7 +6520,7 @@ export declare const SelectWithRemoteOptions: {
6519
6520
  locale?: string | undefined;
6520
6521
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6521
6522
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
6522
- componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6523
+ componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6523
6524
  multiple: boolean;
6524
6525
  clearable: boolean;
6525
6526
  creatable: boolean;
@@ -6543,7 +6544,7 @@ export declare const SelectWithRemoteOptions: {
6543
6544
  locale?: string | undefined;
6544
6545
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6545
6546
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
6546
- UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6547
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6547
6548
  multiple: boolean;
6548
6549
  clearable: boolean;
6549
6550
  creatable: boolean;
@@ -6568,7 +6569,7 @@ export declare const SelectWithRemoteOptions: {
6568
6569
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6569
6570
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
6570
6571
  };
6571
- new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6572
+ new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6572
6573
  multiple: boolean;
6573
6574
  clearable: boolean;
6574
6575
  creatable: boolean;
@@ -6594,7 +6595,7 @@ export declare const SelectWithRemoteOptions: {
6594
6595
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
6595
6596
  render(): JSX.Element;
6596
6597
  context: any;
6597
- setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6598
+ setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6598
6599
  multiple: boolean;
6599
6600
  clearable: boolean;
6600
6601
  creatable: boolean;
@@ -6619,7 +6620,7 @@ export declare const SelectWithRemoteOptions: {
6619
6620
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6620
6621
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
6621
6622
  forceUpdate(callback?: (() => void) | undefined): void;
6622
- readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6623
+ readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6623
6624
  multiple: boolean;
6624
6625
  clearable: boolean;
6625
6626
  creatable: boolean;
@@ -6650,7 +6651,7 @@ export declare const SelectWithRemoteOptions: {
6650
6651
  [key: string]: React.ReactInstance;
6651
6652
  };
6652
6653
  componentDidMount?(): void;
6653
- shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6654
+ shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6654
6655
  multiple: boolean;
6655
6656
  clearable: boolean;
6656
6657
  creatable: boolean;
@@ -6676,7 +6677,7 @@ export declare const SelectWithRemoteOptions: {
6676
6677
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
6677
6678
  componentWillUnmount?(): void;
6678
6679
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
6679
- getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6680
+ getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6680
6681
  multiple: boolean;
6681
6682
  clearable: boolean;
6682
6683
  creatable: boolean;
@@ -6700,7 +6701,7 @@ export declare const SelectWithRemoteOptions: {
6700
6701
  locale?: string | undefined;
6701
6702
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6702
6703
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
6703
- componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6704
+ componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6704
6705
  multiple: boolean;
6705
6706
  clearable: boolean;
6706
6707
  creatable: boolean;
@@ -6726,7 +6727,7 @@ export declare const SelectWithRemoteOptions: {
6726
6727
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
6727
6728
  componentWillMount?(): void;
6728
6729
  UNSAFE_componentWillMount?(): void;
6729
- componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6730
+ componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6730
6731
  multiple: boolean;
6731
6732
  clearable: boolean;
6732
6733
  creatable: boolean;
@@ -6750,7 +6751,7 @@ export declare const SelectWithRemoteOptions: {
6750
6751
  locale?: string | undefined;
6751
6752
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6752
6753
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
6753
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6754
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6754
6755
  multiple: boolean;
6755
6756
  clearable: boolean;
6756
6757
  creatable: boolean;
@@ -6774,7 +6775,7 @@ export declare const SelectWithRemoteOptions: {
6774
6775
  locale?: string | undefined;
6775
6776
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6776
6777
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
6777
- componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6778
+ componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6778
6779
  multiple: boolean;
6779
6780
  clearable: boolean;
6780
6781
  creatable: boolean;
@@ -6798,7 +6799,7 @@ export declare const SelectWithRemoteOptions: {
6798
6799
  locale?: string | undefined;
6799
6800
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6800
6801
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
6801
- UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6802
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6802
6803
  multiple: boolean;
6803
6804
  clearable: boolean;
6804
6805
  creatable: boolean;
@@ -6826,7 +6827,7 @@ export declare const SelectWithRemoteOptions: {
6826
6827
  contextType?: React.Context<any> | undefined;
6827
6828
  }, {}> & {
6828
6829
  ComposedComponent: {
6829
- new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6830
+ new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6830
6831
  multiple: boolean;
6831
6832
  clearable: boolean;
6832
6833
  creatable: boolean;
@@ -6849,7 +6850,7 @@ export declare const SelectWithRemoteOptions: {
6849
6850
  }, never>> & {
6850
6851
  locale?: string | undefined;
6851
6852
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6852
- }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6853
+ }, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6853
6854
  multiple: boolean;
6854
6855
  clearable: boolean;
6855
6856
  creatable: boolean;
@@ -6875,7 +6876,7 @@ export declare const SelectWithRemoteOptions: {
6875
6876
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
6876
6877
  render(): JSX.Element;
6877
6878
  context: any;
6878
- setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6879
+ setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6879
6880
  multiple: boolean;
6880
6881
  clearable: boolean;
6881
6882
  creatable: boolean;
@@ -6900,7 +6901,7 @@ export declare const SelectWithRemoteOptions: {
6900
6901
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6901
6902
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
6902
6903
  forceUpdate(callback?: (() => void) | undefined): void;
6903
- readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6904
+ readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6904
6905
  multiple: boolean;
6905
6906
  clearable: boolean;
6906
6907
  creatable: boolean;
@@ -6931,7 +6932,7 @@ export declare const SelectWithRemoteOptions: {
6931
6932
  [key: string]: React.ReactInstance;
6932
6933
  };
6933
6934
  componentDidMount?(): void;
6934
- shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6935
+ shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6935
6936
  multiple: boolean;
6936
6937
  clearable: boolean;
6937
6938
  creatable: boolean;
@@ -6957,7 +6958,7 @@ export declare const SelectWithRemoteOptions: {
6957
6958
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
6958
6959
  componentWillUnmount?(): void;
6959
6960
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
6960
- getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6961
+ getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6961
6962
  multiple: boolean;
6962
6963
  clearable: boolean;
6963
6964
  creatable: boolean;
@@ -6981,7 +6982,7 @@ export declare const SelectWithRemoteOptions: {
6981
6982
  locale?: string | undefined;
6982
6983
  translate?: ((str: string, ...args: any[]) => string) | undefined;
6983
6984
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
6984
- componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6985
+ componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
6985
6986
  multiple: boolean;
6986
6987
  clearable: boolean;
6987
6988
  creatable: boolean;
@@ -7007,7 +7008,7 @@ export declare const SelectWithRemoteOptions: {
7007
7008
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
7008
7009
  componentWillMount?(): void;
7009
7010
  UNSAFE_componentWillMount?(): void;
7010
- componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7011
+ componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7011
7012
  multiple: boolean;
7012
7013
  clearable: boolean;
7013
7014
  creatable: boolean;
@@ -7031,7 +7032,7 @@ export declare const SelectWithRemoteOptions: {
7031
7032
  locale?: string | undefined;
7032
7033
  translate?: ((str: string, ...args: any[]) => string) | undefined;
7033
7034
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
7034
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7035
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7035
7036
  multiple: boolean;
7036
7037
  clearable: boolean;
7037
7038
  creatable: boolean;
@@ -7055,7 +7056,7 @@ export declare const SelectWithRemoteOptions: {
7055
7056
  locale?: string | undefined;
7056
7057
  translate?: ((str: string, ...args: any[]) => string) | undefined;
7057
7058
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
7058
- componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7059
+ componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7059
7060
  multiple: boolean;
7060
7061
  clearable: boolean;
7061
7062
  creatable: boolean;
@@ -7079,7 +7080,7 @@ export declare const SelectWithRemoteOptions: {
7079
7080
  locale?: string | undefined;
7080
7081
  translate?: ((str: string, ...args: any[]) => string) | undefined;
7081
7082
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
7082
- UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7083
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7083
7084
  multiple: boolean;
7084
7085
  clearable: boolean;
7085
7086
  creatable: boolean;
@@ -7104,7 +7105,7 @@ export declare const SelectWithRemoteOptions: {
7104
7105
  translate?: ((str: string, ...args: any[]) => string) | undefined;
7105
7106
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
7106
7107
  };
7107
- new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7108
+ new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7108
7109
  multiple: boolean;
7109
7110
  clearable: boolean;
7110
7111
  creatable: boolean;
@@ -7130,7 +7131,7 @@ export declare const SelectWithRemoteOptions: {
7130
7131
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
7131
7132
  render(): JSX.Element;
7132
7133
  context: any;
7133
- setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7134
+ setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7134
7135
  multiple: boolean;
7135
7136
  clearable: boolean;
7136
7137
  creatable: boolean;
@@ -7155,7 +7156,7 @@ export declare const SelectWithRemoteOptions: {
7155
7156
  translate?: ((str: string, ...args: any[]) => string) | undefined;
7156
7157
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
7157
7158
  forceUpdate(callback?: (() => void) | undefined): void;
7158
- readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7159
+ readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7159
7160
  multiple: boolean;
7160
7161
  clearable: boolean;
7161
7162
  creatable: boolean;
@@ -7186,7 +7187,7 @@ export declare const SelectWithRemoteOptions: {
7186
7187
  [key: string]: React.ReactInstance;
7187
7188
  };
7188
7189
  componentDidMount?(): void;
7189
- shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7190
+ shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7190
7191
  multiple: boolean;
7191
7192
  clearable: boolean;
7192
7193
  creatable: boolean;
@@ -7212,7 +7213,7 @@ export declare const SelectWithRemoteOptions: {
7212
7213
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
7213
7214
  componentWillUnmount?(): void;
7214
7215
  componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
7215
- getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7216
+ getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7216
7217
  multiple: boolean;
7217
7218
  clearable: boolean;
7218
7219
  creatable: boolean;
@@ -7236,7 +7237,7 @@ export declare const SelectWithRemoteOptions: {
7236
7237
  locale?: string | undefined;
7237
7238
  translate?: ((str: string, ...args: any[]) => string) | undefined;
7238
7239
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
7239
- componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7240
+ componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7240
7241
  multiple: boolean;
7241
7242
  clearable: boolean;
7242
7243
  creatable: boolean;
@@ -7262,7 +7263,7 @@ export declare const SelectWithRemoteOptions: {
7262
7263
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
7263
7264
  componentWillMount?(): void;
7264
7265
  UNSAFE_componentWillMount?(): void;
7265
- componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7266
+ componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7266
7267
  multiple: boolean;
7267
7268
  clearable: boolean;
7268
7269
  creatable: boolean;
@@ -7286,7 +7287,7 @@ export declare const SelectWithRemoteOptions: {
7286
7287
  locale?: string | undefined;
7287
7288
  translate?: ((str: string, ...args: any[]) => string) | undefined;
7288
7289
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
7289
- UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7290
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7290
7291
  multiple: boolean;
7291
7292
  clearable: boolean;
7292
7293
  creatable: boolean;
@@ -7310,7 +7311,7 @@ export declare const SelectWithRemoteOptions: {
7310
7311
  locale?: string | undefined;
7311
7312
  translate?: ((str: string, ...args: any[]) => string) | undefined;
7312
7313
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
7313
- componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7314
+ componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7314
7315
  multiple: boolean;
7315
7316
  clearable: boolean;
7316
7317
  creatable: boolean;
@@ -7334,7 +7335,7 @@ export declare const SelectWithRemoteOptions: {
7334
7335
  locale?: string | undefined;
7335
7336
  translate?: ((str: string, ...args: any[]) => string) | undefined;
7336
7337
  }, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
7337
- UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7338
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "spinnerClassName" | "onFocus" | "onBlur" | "onChange" | "popoverClassName" | "popOverContainer" | "borderMode" | "multi" | "simpleValue" | "pathSeparator" | "onAdd" | "editable" | "onEdit" | "removable" | "onDelete" | "valuesNoWrap" | "renderMenu" | "searchable" | "checkAllBySearch" | "defaultOpen" | "hideSelected"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "labelField" | "valueField" | "resetValue" | "inline" | "placeholder" | "clearable" | "overlayPlacement" | "creatable" | "noResultsText" | "createBtnLabel" | "searchPromptText" | "loadingPlaceholder" | "clearAllText" | "clearValueText" | "checkAll" | "checkAllLabel" | "defaultCheckAll">> & Partial<Pick<{
7338
7339
  multiple: boolean;
7339
7340
  clearable: boolean;
7340
7341
  creatable: boolean;