@coorpacademy/components 11.34.5-alpha.9 → 11.35.1

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 (34) hide show
  1. package/es/organism/skill-edition/index.d.ts +1054 -1055
  2. package/es/organism/skill-edition/index.d.ts.map +1 -1
  3. package/es/organism/skill-edition/index.js +17 -19
  4. package/es/organism/skill-edition/index.js.map +1 -1
  5. package/es/organism/skill-edition/style.css +2 -1
  6. package/es/organism/skill-edition/types.d.ts +51 -9
  7. package/es/organism/skill-edition/types.d.ts.map +1 -1
  8. package/es/organism/skill-edition/types.js +6 -0
  9. package/es/organism/skill-edition/types.js.map +1 -1
  10. package/es/template/back-office/brand-update/index.d.ts.map +1 -1
  11. package/es/template/back-office/brand-update/index.js +4 -4
  12. package/es/template/back-office/brand-update/index.js.map +1 -1
  13. package/es/variables/colors.d.ts +2 -0
  14. package/es/variables/colors.d.ts.map +1 -1
  15. package/es/variables/colors.js +3 -1
  16. package/es/variables/colors.js.map +1 -1
  17. package/lib/organism/skill-edition/index.d.ts +1054 -1055
  18. package/lib/organism/skill-edition/index.d.ts.map +1 -1
  19. package/lib/organism/skill-edition/index.js +17 -19
  20. package/lib/organism/skill-edition/index.js.map +1 -1
  21. package/lib/organism/skill-edition/style.css +2 -1
  22. package/lib/organism/skill-edition/types.d.ts +51 -9
  23. package/lib/organism/skill-edition/types.d.ts.map +1 -1
  24. package/lib/organism/skill-edition/types.js +7 -1
  25. package/lib/organism/skill-edition/types.js.map +1 -1
  26. package/lib/template/back-office/brand-update/index.d.ts.map +1 -1
  27. package/lib/template/back-office/brand-update/index.js +3 -3
  28. package/lib/template/back-office/brand-update/index.js.map +1 -1
  29. package/lib/variables/colors.d.ts +2 -0
  30. package/lib/variables/colors.d.ts.map +1 -1
  31. package/lib/variables/colors.js +3 -1
  32. package/lib/variables/colors.js.map +1 -1
  33. package/package.json +3 -3
  34. package/locales/.mtslconfig.json +0 -1
@@ -1,1336 +1,1335 @@
1
1
  /// <reference types="react" />
2
- import PropTypes from 'prop-types';
3
2
  import { SkillEditionProps } from './types';
4
3
  declare const SkillEdition: {
5
4
  (props: SkillEditionProps): JSX.Element;
6
5
  propTypes: {
7
- skillInformations: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
8
- form: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
9
- title: PropTypes.Requireable<string>;
10
- subtitle: PropTypes.Requireable<string>;
11
- select: PropTypes.Requireable<PropTypes.InferProps<{
12
- title: PropTypes.Requireable<string>;
13
- subtitle: PropTypes.Requireable<string>;
14
- 'data-name': PropTypes.Requireable<string>;
15
- field: PropTypes.Requireable<PropTypes.InferProps<{
16
- options: PropTypes.Requireable<(PropTypes.InferProps<{
17
- name: PropTypes.Validator<string>;
18
- value: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
19
- selected: PropTypes.Requireable<boolean>;
20
- validOption: PropTypes.Requireable<boolean>;
6
+ skillInformations: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
7
+ form: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
8
+ title: import("prop-types").Requireable<string>;
9
+ subtitle: import("prop-types").Requireable<string>;
10
+ select: import("prop-types").Requireable<import("prop-types").InferProps<{
11
+ title: import("prop-types").Requireable<string>;
12
+ subtitle: import("prop-types").Requireable<string>;
13
+ 'data-name': import("prop-types").Requireable<string>;
14
+ field: import("prop-types").Requireable<import("prop-types").InferProps<{
15
+ options: import("prop-types").Requireable<(import("prop-types").InferProps<{
16
+ name: import("prop-types").Validator<string>;
17
+ value: import("prop-types").Requireable<NonNullable<string | number | null | undefined>>;
18
+ selected: import("prop-types").Requireable<boolean>;
19
+ validOption: import("prop-types").Requireable<boolean>;
21
20
  }> | null | undefined)[]>;
22
- 'aria-label': PropTypes.Requireable<string>;
23
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
21
+ 'aria-label': import("prop-types").Requireable<string>;
22
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
24
23
  }>>;
25
24
  }>>;
26
- inputText: PropTypes.Requireable<PropTypes.InferProps<{
27
- title: PropTypes.Requireable<string>;
28
- field: PropTypes.Requireable<PropTypes.InferProps<{
29
- autoFocus: PropTypes.Requireable<boolean>;
30
- title: PropTypes.Requireable<string>;
31
- placeholder: PropTypes.Requireable<string>;
32
- defaultValue: PropTypes.Requireable<string>;
33
- theme: PropTypes.Requireable<string>;
34
- disabled: PropTypes.Requireable<boolean>;
35
- value: PropTypes.Requireable<string>;
36
- hint: PropTypes.Requireable<string>;
37
- error: PropTypes.Requireable<string>;
38
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
39
- description: PropTypes.Requireable<string>;
40
- modified: PropTypes.Requireable<boolean>;
41
- type: PropTypes.Requireable<string>;
42
- valid: PropTypes.Requireable<boolean>;
43
- 'aria-label': PropTypes.Requireable<string>;
44
- 'data-name': PropTypes.Requireable<string>;
45
- inputColor: PropTypes.Requireable<boolean>;
25
+ inputText: import("prop-types").Requireable<import("prop-types").InferProps<{
26
+ title: import("prop-types").Requireable<string>;
27
+ field: import("prop-types").Requireable<import("prop-types").InferProps<{
28
+ autoFocus: import("prop-types").Requireable<boolean>;
29
+ title: import("prop-types").Requireable<string>;
30
+ placeholder: import("prop-types").Requireable<string>;
31
+ defaultValue: import("prop-types").Requireable<string>;
32
+ theme: import("prop-types").Requireable<string>;
33
+ disabled: import("prop-types").Requireable<boolean>;
34
+ value: import("prop-types").Requireable<string>;
35
+ hint: import("prop-types").Requireable<string>;
36
+ error: import("prop-types").Requireable<string>;
37
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
38
+ description: import("prop-types").Requireable<string>;
39
+ modified: import("prop-types").Requireable<boolean>;
40
+ type: import("prop-types").Requireable<string>;
41
+ valid: import("prop-types").Requireable<boolean>;
42
+ 'aria-label': import("prop-types").Requireable<string>;
43
+ 'data-name': import("prop-types").Requireable<string>;
44
+ inputColor: import("prop-types").Requireable<boolean>;
46
45
  }>>;
47
46
  }>>;
48
- inputTextArea: PropTypes.Requireable<PropTypes.InferProps<{
49
- title: PropTypes.Requireable<string>;
50
- field: PropTypes.Requireable<PropTypes.InferProps<{
51
- placeholder: PropTypes.Requireable<string>;
52
- title: PropTypes.Requireable<string>;
53
- name: PropTypes.Requireable<string>;
54
- theme: PropTypes.Requireable<string>;
55
- disabled: PropTypes.Requireable<boolean>;
56
- value: PropTypes.Requireable<string>;
57
- hint: PropTypes.Requireable<string>;
58
- error: PropTypes.Requireable<string>;
59
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
60
- description: PropTypes.Requireable<string>;
61
- modified: PropTypes.Requireable<boolean>;
62
- valid: PropTypes.Requireable<boolean>;
47
+ inputTextArea: import("prop-types").Requireable<import("prop-types").InferProps<{
48
+ title: import("prop-types").Requireable<string>;
49
+ field: import("prop-types").Requireable<import("prop-types").InferProps<{
50
+ placeholder: import("prop-types").Requireable<string>;
51
+ title: import("prop-types").Requireable<string>;
52
+ name: import("prop-types").Requireable<string>;
53
+ theme: import("prop-types").Requireable<string>;
54
+ disabled: import("prop-types").Requireable<boolean>;
55
+ value: import("prop-types").Requireable<string>;
56
+ hint: import("prop-types").Requireable<string>;
57
+ error: import("prop-types").Requireable<string>;
58
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
59
+ description: import("prop-types").Requireable<string>;
60
+ modified: import("prop-types").Requireable<boolean>;
61
+ valid: import("prop-types").Requireable<boolean>;
63
62
  }>>;
64
63
  }>>;
65
64
  }>>>;
66
- iconEditor: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
67
- title: PropTypes.Validator<string>;
68
- iconPreview: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
69
- title: PropTypes.Requireable<string>;
70
- icon: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
71
- name: PropTypes.Validator<string>;
72
- color: PropTypes.Requireable<string>;
65
+ iconEditor: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
66
+ title: import("prop-types").Validator<string>;
67
+ iconPreview: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
68
+ title: import("prop-types").Requireable<string>;
69
+ icon: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
70
+ name: import("prop-types").Validator<string>;
71
+ color: import("prop-types").Requireable<string>;
73
72
  }>>>;
74
73
  }>>>;
75
- inputText: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
76
- autoFocus: PropTypes.Requireable<boolean>;
77
- title: PropTypes.Requireable<string>;
78
- placeholder: PropTypes.Requireable<string>;
79
- defaultValue: PropTypes.Requireable<string>;
80
- theme: PropTypes.Requireable<string>;
81
- disabled: PropTypes.Requireable<boolean>;
82
- value: PropTypes.Requireable<string>;
83
- hint: PropTypes.Requireable<string>;
84
- error: PropTypes.Requireable<string>;
85
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
86
- description: PropTypes.Requireable<string>;
87
- modified: PropTypes.Requireable<boolean>;
88
- type: PropTypes.Requireable<string>;
89
- valid: PropTypes.Requireable<boolean>;
90
- 'aria-label': PropTypes.Requireable<string>;
91
- 'data-name': PropTypes.Requireable<string>;
92
- inputColor: PropTypes.Requireable<boolean>;
74
+ inputText: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
75
+ autoFocus: import("prop-types").Requireable<boolean>;
76
+ title: import("prop-types").Requireable<string>;
77
+ placeholder: import("prop-types").Requireable<string>;
78
+ defaultValue: import("prop-types").Requireable<string>;
79
+ theme: import("prop-types").Requireable<string>;
80
+ disabled: import("prop-types").Requireable<boolean>;
81
+ value: import("prop-types").Requireable<string>;
82
+ hint: import("prop-types").Requireable<string>;
83
+ error: import("prop-types").Requireable<string>;
84
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
85
+ description: import("prop-types").Requireable<string>;
86
+ modified: import("prop-types").Requireable<boolean>;
87
+ type: import("prop-types").Requireable<string>;
88
+ valid: import("prop-types").Requireable<boolean>;
89
+ 'aria-label': import("prop-types").Requireable<string>;
90
+ 'data-name': import("prop-types").Requireable<string>;
91
+ inputColor: import("prop-types").Requireable<boolean>;
93
92
  }>>>;
94
- buttonLink: PropTypes.Requireable<PropTypes.InferProps<{
95
- label: PropTypes.Requireable<string>;
96
- ariaLabel: PropTypes.Requireable<string>;
97
- 'data-name': PropTypes.Requireable<string>;
98
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
93
+ buttonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
94
+ label: import("prop-types").Requireable<string>;
95
+ ariaLabel: import("prop-types").Requireable<string>;
96
+ 'data-name': import("prop-types").Requireable<string>;
97
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
99
98
  }>>;
100
99
  }>>>;
101
100
  }>>>;
102
- translations: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
103
- 'aria-label': PropTypes.Requireable<string>;
104
- buttonLink: PropTypes.Requireable<PropTypes.InferProps<{
105
- type: PropTypes.Requireable<string>;
106
- usage: PropTypes.Requireable<string>;
107
- label: PropTypes.Requireable<string>;
108
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
109
- 'aria-label': PropTypes.Requireable<string>;
110
- tooltipText: PropTypes.Requireable<string>;
111
- tooltipPlacement: PropTypes.Requireable<string>;
112
- 'data-name': PropTypes.Requireable<string>;
113
- 'data-testid': PropTypes.Requireable<string>;
114
- icon: PropTypes.Requireable<PropTypes.InferProps<{
115
- position: PropTypes.Requireable<string>;
116
- type: PropTypes.Requireable<string>;
117
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
118
- name: PropTypes.Validator<string>;
119
- color: PropTypes.Requireable<string>;
120
- backgroundColor: PropTypes.Requireable<string>;
121
- size: PropTypes.Requireable<number>;
122
- customStyle: PropTypes.Requireable<{
101
+ translations: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
102
+ 'aria-label': import("prop-types").Requireable<string>;
103
+ buttonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
104
+ type: import("prop-types").Requireable<string>;
105
+ usage: import("prop-types").Requireable<string>;
106
+ label: import("prop-types").Requireable<string>;
107
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
108
+ 'aria-label': import("prop-types").Requireable<string>;
109
+ tooltipText: import("prop-types").Requireable<string>;
110
+ tooltipPlacement: import("prop-types").Requireable<string>;
111
+ 'data-name': import("prop-types").Requireable<string>;
112
+ 'data-testid': import("prop-types").Requireable<string>;
113
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
114
+ position: import("prop-types").Requireable<string>;
115
+ type: import("prop-types").Requireable<string>;
116
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
117
+ name: import("prop-types").Validator<string>;
118
+ color: import("prop-types").Requireable<string>;
119
+ backgroundColor: import("prop-types").Requireable<string>;
120
+ size: import("prop-types").Requireable<number>;
121
+ customStyle: import("prop-types").Requireable<{
123
122
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
124
123
  }>;
125
124
  }>>;
126
125
  }>>;
127
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
128
- link: PropTypes.Requireable<PropTypes.InferProps<{
129
- href: PropTypes.Requireable<string>;
130
- download: PropTypes.Requireable<boolean>;
131
- target: PropTypes.Requireable<string>;
126
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
127
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
128
+ href: import("prop-types").Requireable<string>;
129
+ download: import("prop-types").Requireable<boolean>;
130
+ target: import("prop-types").Requireable<string>;
132
131
  }>>;
133
- hoverBackgroundColor: PropTypes.Requireable<string>;
134
- hoverColor: PropTypes.Requireable<string>;
135
- disabled: PropTypes.Requireable<boolean>;
136
- className: PropTypes.Requireable<string>;
137
- customStyle: PropTypes.Requireable<{
132
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
133
+ hoverColor: import("prop-types").Requireable<string>;
134
+ disabled: import("prop-types").Requireable<boolean>;
135
+ className: import("prop-types").Requireable<string>;
136
+ customStyle: import("prop-types").Requireable<{
138
137
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
139
138
  }>;
140
139
  }>>;
141
- selectMultiple: PropTypes.Requireable<PropTypes.InferProps<{
142
- title: PropTypes.Requireable<string>;
143
- placeholder: PropTypes.Requireable<string>;
144
- description: PropTypes.Requireable<string>;
145
- hint: PropTypes.Requireable<string>;
146
- options: PropTypes.Requireable<NonNullable<PropTypes.InferProps<{
147
- selected: PropTypes.Validator<boolean>;
148
- name: PropTypes.Validator<string>;
149
- value: PropTypes.Requireable<string>;
140
+ selectMultiple: import("prop-types").Requireable<import("prop-types").InferProps<{
141
+ title: import("prop-types").Requireable<string>;
142
+ placeholder: import("prop-types").Requireable<string>;
143
+ description: import("prop-types").Requireable<string>;
144
+ hint: import("prop-types").Requireable<string>;
145
+ options: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
146
+ selected: import("prop-types").Validator<boolean>;
147
+ name: import("prop-types").Validator<string>;
148
+ value: import("prop-types").Requireable<string>;
150
149
  }>>[]>;
151
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
152
- onError: PropTypes.Requireable<(...args: any[]) => any>;
153
- multiple: PropTypes.Requireable<boolean>;
154
- modified: PropTypes.Requireable<boolean>;
155
- disabled: PropTypes.Requireable<boolean>;
156
- error: PropTypes.Requireable<string>;
157
- theme: PropTypes.Requireable<string>;
150
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
151
+ onError: import("prop-types").Requireable<(...args: any[]) => any>;
152
+ multiple: import("prop-types").Requireable<boolean>;
153
+ modified: import("prop-types").Requireable<boolean>;
154
+ disabled: import("prop-types").Requireable<boolean>;
155
+ error: import("prop-types").Requireable<string>;
156
+ theme: import("prop-types").Requireable<string>;
158
157
  }>>;
159
- content: PropTypes.Requireable<NonNullable<PropTypes.InferProps<{
160
- items: PropTypes.Requireable<(PropTypes.InferProps<{
161
- title: PropTypes.Validator<string>;
162
- subtitle: PropTypes.Requireable<string>;
163
- 'data-name': PropTypes.Requireable<string>;
164
- provider: PropTypes.Requireable<PropTypes.InferProps<{
165
- label: PropTypes.Requireable<string>;
166
- type: PropTypes.Requireable<string>;
158
+ content: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
159
+ items: import("prop-types").Requireable<(import("prop-types").InferProps<{
160
+ title: import("prop-types").Validator<string>;
161
+ subtitle: import("prop-types").Requireable<string>;
162
+ 'data-name': import("prop-types").Requireable<string>;
163
+ provider: import("prop-types").Requireable<import("prop-types").InferProps<{
164
+ label: import("prop-types").Requireable<string>;
165
+ type: import("prop-types").Requireable<string>;
167
166
  }>>;
168
- selected: PropTypes.Requireable<boolean>;
169
- selectedColor: PropTypes.Requireable<string>;
170
- dataColumns: PropTypes.Requireable<(PropTypes.InferProps<{
171
- label: PropTypes.Requireable<string>;
172
- type: PropTypes.Requireable<string>;
173
- className: PropTypes.Requireable<string>;
167
+ selected: import("prop-types").Requireable<boolean>;
168
+ selectedColor: import("prop-types").Requireable<string>;
169
+ dataColumns: import("prop-types").Requireable<(import("prop-types").InferProps<{
170
+ label: import("prop-types").Requireable<string>;
171
+ type: import("prop-types").Requireable<string>;
172
+ className: import("prop-types").Requireable<string>;
174
173
  }> | null | undefined)[]>;
175
- buttonLink: PropTypes.Requireable<PropTypes.InferProps<{
176
- type: PropTypes.Requireable<string>;
177
- label: PropTypes.Requireable<string>;
178
- ariaLabel: PropTypes.Requireable<string>;
179
- dataName: PropTypes.Requireable<string>;
180
- icon: PropTypes.Requireable<PropTypes.InferProps<{
181
- position: PropTypes.Requireable<string>;
182
- type: PropTypes.Requireable<string>;
174
+ buttonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
175
+ type: import("prop-types").Requireable<string>;
176
+ label: import("prop-types").Requireable<string>;
177
+ ariaLabel: import("prop-types").Requireable<string>;
178
+ dataName: import("prop-types").Requireable<string>;
179
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
180
+ position: import("prop-types").Requireable<string>;
181
+ type: import("prop-types").Requireable<string>;
183
182
  }>>;
184
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
183
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
185
184
  }>>;
186
- secondButtonLink: PropTypes.Requireable<PropTypes.InferProps<{
187
- type: PropTypes.Requireable<string>;
188
- label: PropTypes.Requireable<string>;
189
- ariaLabel: PropTypes.Requireable<string>;
190
- dataName: PropTypes.Requireable<string>;
191
- icon: PropTypes.Requireable<PropTypes.InferProps<{
192
- position: PropTypes.Requireable<string>;
193
- type: PropTypes.Requireable<string>;
185
+ secondButtonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
186
+ type: import("prop-types").Requireable<string>;
187
+ label: import("prop-types").Requireable<string>;
188
+ ariaLabel: import("prop-types").Requireable<string>;
189
+ dataName: import("prop-types").Requireable<string>;
190
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
191
+ position: import("prop-types").Requireable<string>;
192
+ type: import("prop-types").Requireable<string>;
194
193
  }>>;
195
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
194
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
196
195
  }>>;
197
- bulletPointMenuButton: PropTypes.Requireable<PropTypes.InferProps<{
198
- buttonAriaLabel: PropTypes.Requireable<string>;
199
- menuAriaLabel: PropTypes.Requireable<string>;
200
- buttons: PropTypes.Requireable<(PropTypes.InferProps<{
201
- 'data-name': PropTypes.Requireable<string>;
202
- label: PropTypes.Requireable<string>;
203
- type: PropTypes.Requireable<string>;
204
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
196
+ bulletPointMenuButton: import("prop-types").Requireable<import("prop-types").InferProps<{
197
+ buttonAriaLabel: import("prop-types").Requireable<string>;
198
+ menuAriaLabel: import("prop-types").Requireable<string>;
199
+ buttons: import("prop-types").Requireable<(import("prop-types").InferProps<{
200
+ 'data-name': import("prop-types").Requireable<string>;
201
+ label: import("prop-types").Requireable<string>;
202
+ type: import("prop-types").Requireable<string>;
203
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
205
204
  }> | null | undefined)[]>;
206
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
205
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
207
206
  }>>;
208
- tags: PropTypes.Requireable<(PropTypes.InferProps<{
209
- label: PropTypes.Requireable<string>;
210
- type: PropTypes.Requireable<string>;
207
+ tags: import("prop-types").Requireable<(import("prop-types").InferProps<{
208
+ label: import("prop-types").Requireable<string>;
209
+ type: import("prop-types").Requireable<string>;
211
210
  }> | null | undefined)[]>;
212
- disabled: PropTypes.Requireable<boolean>;
213
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
214
- isBulkStyle: PropTypes.Requireable<boolean>;
215
- isOverflowHidden: PropTypes.Requireable<boolean>;
216
- order: PropTypes.Requireable<number>;
217
- 'aria-label': PropTypes.Requireable<string>;
218
- contentType: PropTypes.Requireable<string>;
219
- id: PropTypes.Requireable<string>;
220
- leftIcon: PropTypes.Requireable<PropTypes.InferProps<{
221
- iconName: PropTypes.Requireable<string>;
222
- iconColor: PropTypes.Requireable<string>;
223
- backgroundColor: PropTypes.Requireable<string>;
224
- borderRadius: PropTypes.Requireable<string>;
225
- preset: PropTypes.Requireable<string>;
226
- gradientBackground: PropTypes.Requireable<boolean>;
227
- size: PropTypes.Requireable<number>;
228
- wrapperSize: PropTypes.Requireable<number>;
211
+ disabled: import("prop-types").Requireable<boolean>;
212
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
213
+ isBulkStyle: import("prop-types").Requireable<boolean>;
214
+ isOverflowHidden: import("prop-types").Requireable<boolean>;
215
+ order: import("prop-types").Requireable<number>;
216
+ 'aria-label': import("prop-types").Requireable<string>;
217
+ contentType: import("prop-types").Requireable<string>;
218
+ id: import("prop-types").Requireable<string>;
219
+ leftIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
220
+ iconName: import("prop-types").Requireable<string>;
221
+ iconColor: import("prop-types").Requireable<string>;
222
+ backgroundColor: import("prop-types").Requireable<string>;
223
+ borderRadius: import("prop-types").Requireable<string>;
224
+ preset: import("prop-types").Requireable<string>;
225
+ gradientBackground: import("prop-types").Requireable<boolean>;
226
+ size: import("prop-types").Requireable<number>;
227
+ wrapperSize: import("prop-types").Requireable<number>;
229
228
  }>>;
230
- image: PropTypes.Requireable<string>;
231
- checkbox: PropTypes.Requireable<PropTypes.InferProps<{
232
- title: PropTypes.Requireable<string>;
233
- name: PropTypes.Requireable<string>;
234
- checked: PropTypes.Requireable<boolean>;
235
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
236
- 'aria-label': PropTypes.Requireable<string>;
237
- 'data-name': PropTypes.Requireable<string>;
238
- icon: PropTypes.Requireable<PropTypes.InferProps<{
239
- iconName: PropTypes.Requireable<string>;
240
- iconColor: PropTypes.Requireable<string>;
241
- preset: PropTypes.Requireable<string>;
229
+ image: import("prop-types").Requireable<string>;
230
+ checkbox: import("prop-types").Requireable<import("prop-types").InferProps<{
231
+ title: import("prop-types").Requireable<string>;
232
+ name: import("prop-types").Requireable<string>;
233
+ checked: import("prop-types").Requireable<boolean>;
234
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
235
+ 'aria-label': import("prop-types").Requireable<string>;
236
+ 'data-name': import("prop-types").Requireable<string>;
237
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
238
+ iconName: import("prop-types").Requireable<string>;
239
+ iconColor: import("prop-types").Requireable<string>;
240
+ preset: import("prop-types").Requireable<string>;
242
241
  }>>;
243
- customStyle: PropTypes.Requireable<{
242
+ customStyle: import("prop-types").Requireable<{
244
243
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
245
244
  }>;
246
245
  }>>;
247
246
  }> | null | undefined)[]>;
248
- type: PropTypes.Requireable<string>;
249
- itemType: PropTypes.Requireable<string>;
250
- onDrop: PropTypes.Requireable<(...args: any[]) => any>;
251
- isDraggable: PropTypes.Requireable<boolean>;
252
- tableHeader: PropTypes.Requireable<(string | null | undefined)[]>;
253
- emptyResult: PropTypes.Requireable<PropTypes.InferProps<{
254
- title: PropTypes.Requireable<string>;
255
- description: PropTypes.Requireable<string>;
256
- button: PropTypes.Requireable<NonNullable<PropTypes.InferProps<{
257
- type: PropTypes.Requireable<string>;
258
- usage: PropTypes.Requireable<string>;
259
- label: PropTypes.Requireable<string>;
260
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
261
- 'aria-label': PropTypes.Requireable<string>;
262
- tooltipText: PropTypes.Requireable<string>;
263
- tooltipPlacement: PropTypes.Requireable<string>;
264
- 'data-name': PropTypes.Requireable<string>;
265
- 'data-testid': PropTypes.Requireable<string>;
266
- icon: PropTypes.Requireable<PropTypes.InferProps<{
267
- position: PropTypes.Requireable<string>;
268
- type: PropTypes.Requireable<string>;
269
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
270
- name: PropTypes.Validator<string>;
271
- color: PropTypes.Requireable<string>;
272
- backgroundColor: PropTypes.Requireable<string>;
273
- size: PropTypes.Requireable<number>;
274
- customStyle: PropTypes.Requireable<{
247
+ type: import("prop-types").Requireable<string>;
248
+ itemType: import("prop-types").Requireable<string>;
249
+ onDrop: import("prop-types").Requireable<(...args: any[]) => any>;
250
+ isDraggable: import("prop-types").Requireable<boolean>;
251
+ tableHeader: import("prop-types").Requireable<(string | null | undefined)[]>;
252
+ emptyResult: import("prop-types").Requireable<import("prop-types").InferProps<{
253
+ title: import("prop-types").Requireable<string>;
254
+ description: import("prop-types").Requireable<string>;
255
+ button: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
256
+ type: import("prop-types").Requireable<string>;
257
+ usage: import("prop-types").Requireable<string>;
258
+ label: import("prop-types").Requireable<string>;
259
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
260
+ 'aria-label': import("prop-types").Requireable<string>;
261
+ tooltipText: import("prop-types").Requireable<string>;
262
+ tooltipPlacement: import("prop-types").Requireable<string>;
263
+ 'data-name': import("prop-types").Requireable<string>;
264
+ 'data-testid': import("prop-types").Requireable<string>;
265
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
266
+ position: import("prop-types").Requireable<string>;
267
+ type: import("prop-types").Requireable<string>;
268
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
269
+ name: import("prop-types").Validator<string>;
270
+ color: import("prop-types").Requireable<string>;
271
+ backgroundColor: import("prop-types").Requireable<string>;
272
+ size: import("prop-types").Requireable<number>;
273
+ customStyle: import("prop-types").Requireable<{
275
274
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
276
275
  }>;
277
276
  }>>;
278
277
  }>>;
279
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
280
- link: PropTypes.Requireable<PropTypes.InferProps<{
281
- href: PropTypes.Requireable<string>;
282
- download: PropTypes.Requireable<boolean>;
283
- target: PropTypes.Requireable<string>;
278
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
279
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
280
+ href: import("prop-types").Requireable<string>;
281
+ download: import("prop-types").Requireable<boolean>;
282
+ target: import("prop-types").Requireable<string>;
284
283
  }>>;
285
- hoverBackgroundColor: PropTypes.Requireable<string>;
286
- hoverColor: PropTypes.Requireable<string>;
287
- disabled: PropTypes.Requireable<boolean>;
288
- className: PropTypes.Requireable<string>;
289
- customStyle: PropTypes.Requireable<{
284
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
285
+ hoverColor: import("prop-types").Requireable<string>;
286
+ disabled: import("prop-types").Requireable<boolean>;
287
+ className: import("prop-types").Requireable<string>;
288
+ customStyle: import("prop-types").Requireable<{
290
289
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
291
290
  }>;
292
- }> | PropTypes.InferProps<{
293
- button: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
294
- type: PropTypes.Requireable<string>;
295
- usage: PropTypes.Requireable<string>;
296
- label: PropTypes.Requireable<string>;
297
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
298
- 'aria-label': PropTypes.Requireable<string>;
299
- tooltipText: PropTypes.Requireable<string>;
300
- tooltipPlacement: PropTypes.Requireable<string>;
301
- 'data-name': PropTypes.Requireable<string>;
302
- 'data-testid': PropTypes.Requireable<string>;
303
- icon: PropTypes.Requireable<PropTypes.InferProps<{
304
- position: PropTypes.Requireable<string>;
305
- type: PropTypes.Requireable<string>;
306
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
307
- name: PropTypes.Validator<string>;
308
- color: PropTypes.Requireable<string>;
309
- backgroundColor: PropTypes.Requireable<string>;
310
- size: PropTypes.Requireable<number>;
311
- customStyle: PropTypes.Requireable<{
291
+ }> | import("prop-types").InferProps<{
292
+ button: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
293
+ type: import("prop-types").Requireable<string>;
294
+ usage: import("prop-types").Requireable<string>;
295
+ label: import("prop-types").Requireable<string>;
296
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
297
+ 'aria-label': import("prop-types").Requireable<string>;
298
+ tooltipText: import("prop-types").Requireable<string>;
299
+ tooltipPlacement: import("prop-types").Requireable<string>;
300
+ 'data-name': import("prop-types").Requireable<string>;
301
+ 'data-testid': import("prop-types").Requireable<string>;
302
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
303
+ position: import("prop-types").Requireable<string>;
304
+ type: import("prop-types").Requireable<string>;
305
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
306
+ name: import("prop-types").Validator<string>;
307
+ color: import("prop-types").Requireable<string>;
308
+ backgroundColor: import("prop-types").Requireable<string>;
309
+ size: import("prop-types").Requireable<number>;
310
+ customStyle: import("prop-types").Requireable<{
312
311
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
313
312
  }>;
314
313
  }>>;
315
314
  }>>;
316
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
317
- link: PropTypes.Requireable<PropTypes.InferProps<{
318
- href: PropTypes.Requireable<string>;
319
- download: PropTypes.Requireable<boolean>;
320
- target: PropTypes.Requireable<string>;
315
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
316
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
317
+ href: import("prop-types").Requireable<string>;
318
+ download: import("prop-types").Requireable<boolean>;
319
+ target: import("prop-types").Requireable<string>;
321
320
  }>>;
322
- hoverBackgroundColor: PropTypes.Requireable<string>;
323
- hoverColor: PropTypes.Requireable<string>;
324
- disabled: PropTypes.Requireable<boolean>;
325
- className: PropTypes.Requireable<string>;
326
- customStyle: PropTypes.Requireable<{
321
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
322
+ hoverColor: import("prop-types").Requireable<string>;
323
+ disabled: import("prop-types").Requireable<boolean>;
324
+ className: import("prop-types").Requireable<string>;
325
+ customStyle: import("prop-types").Requireable<{
327
326
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
328
327
  }>;
329
328
  }>>>;
330
- menu: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
331
- buttons: PropTypes.Validator<(PropTypes.InferProps<{
332
- 'data-name': PropTypes.Requireable<string>;
333
- disabled: PropTypes.Requireable<boolean>;
334
- label: PropTypes.Validator<string>;
335
- onClick: PropTypes.Validator<(...args: any[]) => any>;
336
- type: PropTypes.Requireable<string>;
337
- buttonLinkType: PropTypes.Requireable<string>;
338
- icon: PropTypes.Requireable<PropTypes.InferProps<{
339
- theme: PropTypes.Requireable<string>;
340
- position: PropTypes.Requireable<string>;
341
- type: PropTypes.Requireable<string>;
342
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
343
- name: PropTypes.Validator<string>;
344
- color: PropTypes.Requireable<string>;
345
- backgroundColor: PropTypes.Requireable<string>;
346
- size: PropTypes.Requireable<number>;
347
- customStyle: PropTypes.Requireable<{
329
+ menu: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
330
+ buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
331
+ 'data-name': import("prop-types").Requireable<string>;
332
+ disabled: import("prop-types").Requireable<boolean>;
333
+ label: import("prop-types").Validator<string>;
334
+ onClick: import("prop-types").Validator<(...args: any[]) => any>;
335
+ type: import("prop-types").Requireable<string>;
336
+ buttonLinkType: import("prop-types").Requireable<string>;
337
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
338
+ theme: import("prop-types").Requireable<string>;
339
+ position: import("prop-types").Requireable<string>;
340
+ type: import("prop-types").Requireable<string>;
341
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
342
+ name: import("prop-types").Validator<string>;
343
+ color: import("prop-types").Requireable<string>;
344
+ backgroundColor: import("prop-types").Requireable<string>;
345
+ size: import("prop-types").Requireable<number>;
346
+ customStyle: import("prop-types").Requireable<{
348
347
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
349
348
  }>;
350
349
  }>>;
351
350
  }>>;
352
- customStyle: PropTypes.Requireable<{
351
+ customStyle: import("prop-types").Requireable<{
353
352
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
354
353
  }>;
355
354
  }> | null | undefined)[]>;
356
- 'data-name': PropTypes.Requireable<string>;
357
- 'aria-label': PropTypes.Requireable<string>;
355
+ 'data-name': import("prop-types").Requireable<string>;
356
+ 'aria-label': import("prop-types").Requireable<string>;
358
357
  }>>>;
359
- menuWrapper: PropTypes.Requireable<PropTypes.InferProps<{
360
- ariaLabel: PropTypes.Requireable<string>;
361
- customStyle: PropTypes.Requireable<{
358
+ menuWrapper: import("prop-types").Requireable<import("prop-types").InferProps<{
359
+ ariaLabel: import("prop-types").Requireable<string>;
360
+ customStyle: import("prop-types").Requireable<{
362
361
  [x: string]: NonNullable<string | number | object | null | undefined> | null | undefined;
363
362
  }>;
364
363
  }>>;
365
364
  }> | null | undefined>>;
366
365
  }>>;
367
- }> | PropTypes.InferProps<{
368
- type: PropTypes.Requireable<string>;
369
- columns: PropTypes.Requireable<(PropTypes.InferProps<{
370
- title: PropTypes.Validator<string>;
366
+ }> | import("prop-types").InferProps<{
367
+ type: import("prop-types").Requireable<string>;
368
+ columns: import("prop-types").Requireable<(import("prop-types").InferProps<{
369
+ title: import("prop-types").Validator<string>;
371
370
  }> | null | undefined)[]>;
372
- rows: PropTypes.Requireable<(PropTypes.InferProps<{
373
- fields: PropTypes.Requireable<(NonNullable<string | PropTypes.InferProps<{
374
- type: PropTypes.Requireable<string>;
375
- current: PropTypes.Requireable<boolean>;
376
- selected: PropTypes.Requireable<boolean>;
377
- icon: PropTypes.Requireable<string>;
378
- value: PropTypes.Requireable<string>;
371
+ rows: import("prop-types").Requireable<(import("prop-types").InferProps<{
372
+ fields: import("prop-types").Requireable<(NonNullable<string | import("prop-types").InferProps<{
373
+ type: import("prop-types").Requireable<string>;
374
+ current: import("prop-types").Requireable<boolean>;
375
+ selected: import("prop-types").Requireable<boolean>;
376
+ icon: import("prop-types").Requireable<string>;
377
+ value: import("prop-types").Requireable<string>;
379
378
  }> | null | undefined> | null | undefined)[]>;
380
- isRowExpandible: PropTypes.Requireable<boolean>;
381
- lastField: PropTypes.Requireable<NonNullable<string | PropTypes.InferProps<{
382
- type: PropTypes.Requireable<string>;
383
- 'data-name': PropTypes.Requireable<string>;
384
- disabled: PropTypes.Requireable<boolean>;
385
- buttonAriaLabel: PropTypes.Requireable<string>;
386
- menuAriaLabel: PropTypes.Requireable<string>;
387
- buttons: PropTypes.Validator<(PropTypes.InferProps<{
388
- 'data-name': PropTypes.Requireable<string>;
389
- disabled: PropTypes.Requireable<boolean>;
390
- label: PropTypes.Validator<string>;
391
- onClick: PropTypes.Validator<(...args: any[]) => any>;
392
- type: PropTypes.Requireable<string>;
393
- buttonLinkType: PropTypes.Requireable<string>;
394
- icon: PropTypes.Requireable<PropTypes.InferProps<{
395
- theme: PropTypes.Requireable<string>;
396
- position: PropTypes.Requireable<string>;
397
- type: PropTypes.Requireable<string>;
398
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
399
- name: PropTypes.Validator<string>;
400
- color: PropTypes.Requireable<string>;
401
- backgroundColor: PropTypes.Requireable<string>;
402
- size: PropTypes.Requireable<number>;
403
- customStyle: PropTypes.Requireable<{
379
+ isRowExpandible: import("prop-types").Requireable<boolean>;
380
+ lastField: import("prop-types").Requireable<NonNullable<string | import("prop-types").InferProps<{
381
+ type: import("prop-types").Requireable<string>;
382
+ 'data-name': import("prop-types").Requireable<string>;
383
+ disabled: import("prop-types").Requireable<boolean>;
384
+ buttonAriaLabel: import("prop-types").Requireable<string>;
385
+ menuAriaLabel: import("prop-types").Requireable<string>;
386
+ buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
387
+ 'data-name': import("prop-types").Requireable<string>;
388
+ disabled: import("prop-types").Requireable<boolean>;
389
+ label: import("prop-types").Validator<string>;
390
+ onClick: import("prop-types").Validator<(...args: any[]) => any>;
391
+ type: import("prop-types").Requireable<string>;
392
+ buttonLinkType: import("prop-types").Requireable<string>;
393
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
394
+ theme: import("prop-types").Requireable<string>;
395
+ position: import("prop-types").Requireable<string>;
396
+ type: import("prop-types").Requireable<string>;
397
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
398
+ name: import("prop-types").Validator<string>;
399
+ color: import("prop-types").Requireable<string>;
400
+ backgroundColor: import("prop-types").Requireable<string>;
401
+ size: import("prop-types").Requireable<number>;
402
+ customStyle: import("prop-types").Requireable<{
404
403
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
405
404
  }>;
406
405
  }>>;
407
406
  }>>;
408
- customStyle: PropTypes.Requireable<{
407
+ customStyle: import("prop-types").Requireable<{
409
408
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
410
409
  }>;
411
410
  }> | null | undefined)[]>;
412
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
413
- menuButtonClassName: PropTypes.Requireable<string>;
414
- isBulkMenu: PropTypes.Requireable<boolean>;
411
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
412
+ menuButtonClassName: import("prop-types").Requireable<string>;
413
+ isBulkMenu: import("prop-types").Requireable<boolean>;
415
414
  }> | null | undefined>>;
416
415
  }> | null | undefined)[]>;
417
- stickyFirstColumn: PropTypes.Requireable<boolean>;
418
- stickyLastColumn: PropTypes.Requireable<boolean>;
419
- columnWidth: PropTypes.Requireable<string>;
420
- ariaDescribedby: PropTypes.Requireable<string>;
421
- lastField: PropTypes.Requireable<NonNullable<PropTypes.InferProps<{
422
- componentType: PropTypes.Requireable<string>;
423
- type: PropTypes.Requireable<string>;
424
- usage: PropTypes.Requireable<string>;
425
- label: PropTypes.Requireable<string>;
426
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
427
- 'aria-label': PropTypes.Requireable<string>;
428
- tooltipText: PropTypes.Requireable<string>;
429
- tooltipPlacement: PropTypes.Requireable<string>;
430
- 'data-name': PropTypes.Requireable<string>;
431
- 'data-testid': PropTypes.Requireable<string>;
432
- icon: PropTypes.Requireable<PropTypes.InferProps<{
433
- position: PropTypes.Requireable<string>;
434
- type: PropTypes.Requireable<string>;
435
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
436
- name: PropTypes.Validator<string>;
437
- color: PropTypes.Requireable<string>;
438
- backgroundColor: PropTypes.Requireable<string>;
439
- size: PropTypes.Requireable<number>;
440
- customStyle: PropTypes.Requireable<{
416
+ stickyFirstColumn: import("prop-types").Requireable<boolean>;
417
+ stickyLastColumn: import("prop-types").Requireable<boolean>;
418
+ columnWidth: import("prop-types").Requireable<string>;
419
+ ariaDescribedby: import("prop-types").Requireable<string>;
420
+ lastField: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
421
+ componentType: import("prop-types").Requireable<string>;
422
+ type: import("prop-types").Requireable<string>;
423
+ usage: import("prop-types").Requireable<string>;
424
+ label: import("prop-types").Requireable<string>;
425
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
426
+ 'aria-label': import("prop-types").Requireable<string>;
427
+ tooltipText: import("prop-types").Requireable<string>;
428
+ tooltipPlacement: import("prop-types").Requireable<string>;
429
+ 'data-name': import("prop-types").Requireable<string>;
430
+ 'data-testid': import("prop-types").Requireable<string>;
431
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
432
+ position: import("prop-types").Requireable<string>;
433
+ type: import("prop-types").Requireable<string>;
434
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
435
+ name: import("prop-types").Validator<string>;
436
+ color: import("prop-types").Requireable<string>;
437
+ backgroundColor: import("prop-types").Requireable<string>;
438
+ size: import("prop-types").Requireable<number>;
439
+ customStyle: import("prop-types").Requireable<{
441
440
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
442
441
  }>;
443
442
  }>>;
444
443
  }>>;
445
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
446
- link: PropTypes.Requireable<PropTypes.InferProps<{
447
- href: PropTypes.Requireable<string>;
448
- download: PropTypes.Requireable<boolean>;
449
- target: PropTypes.Requireable<string>;
444
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
445
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
446
+ href: import("prop-types").Requireable<string>;
447
+ download: import("prop-types").Requireable<boolean>;
448
+ target: import("prop-types").Requireable<string>;
450
449
  }>>;
451
- hoverBackgroundColor: PropTypes.Requireable<string>;
452
- hoverColor: PropTypes.Requireable<string>;
453
- disabled: PropTypes.Requireable<boolean>;
454
- className: PropTypes.Requireable<string>;
455
- customStyle: PropTypes.Requireable<{
450
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
451
+ hoverColor: import("prop-types").Requireable<string>;
452
+ disabled: import("prop-types").Requireable<boolean>;
453
+ className: import("prop-types").Requireable<string>;
454
+ customStyle: import("prop-types").Requireable<{
456
455
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
457
456
  }>;
458
- }> | PropTypes.InferProps<{
459
- componentType: PropTypes.Requireable<string>;
460
- 'data-name': PropTypes.Requireable<string>;
461
- disabled: PropTypes.Requireable<boolean>;
462
- buttonAriaLabel: PropTypes.Requireable<string>;
463
- menuAriaLabel: PropTypes.Requireable<string>;
464
- buttons: PropTypes.Validator<(PropTypes.InferProps<{
465
- 'data-name': PropTypes.Requireable<string>;
466
- disabled: PropTypes.Requireable<boolean>;
467
- label: PropTypes.Validator<string>;
468
- onClick: PropTypes.Validator<(...args: any[]) => any>;
469
- type: PropTypes.Requireable<string>;
470
- buttonLinkType: PropTypes.Requireable<string>;
471
- icon: PropTypes.Requireable<PropTypes.InferProps<{
472
- theme: PropTypes.Requireable<string>;
473
- position: PropTypes.Requireable<string>;
474
- type: PropTypes.Requireable<string>;
475
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
476
- name: PropTypes.Validator<string>;
477
- color: PropTypes.Requireable<string>;
478
- backgroundColor: PropTypes.Requireable<string>;
479
- size: PropTypes.Requireable<number>;
480
- customStyle: PropTypes.Requireable<{
457
+ }> | import("prop-types").InferProps<{
458
+ componentType: import("prop-types").Requireable<string>;
459
+ 'data-name': import("prop-types").Requireable<string>;
460
+ disabled: import("prop-types").Requireable<boolean>;
461
+ buttonAriaLabel: import("prop-types").Requireable<string>;
462
+ menuAriaLabel: import("prop-types").Requireable<string>;
463
+ buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
464
+ 'data-name': import("prop-types").Requireable<string>;
465
+ disabled: import("prop-types").Requireable<boolean>;
466
+ label: import("prop-types").Validator<string>;
467
+ onClick: import("prop-types").Validator<(...args: any[]) => any>;
468
+ type: import("prop-types").Requireable<string>;
469
+ buttonLinkType: import("prop-types").Requireable<string>;
470
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
471
+ theme: import("prop-types").Requireable<string>;
472
+ position: import("prop-types").Requireable<string>;
473
+ type: import("prop-types").Requireable<string>;
474
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
475
+ name: import("prop-types").Validator<string>;
476
+ color: import("prop-types").Requireable<string>;
477
+ backgroundColor: import("prop-types").Requireable<string>;
478
+ size: import("prop-types").Requireable<number>;
479
+ customStyle: import("prop-types").Requireable<{
481
480
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
482
481
  }>;
483
482
  }>>;
484
483
  }>>;
485
- customStyle: PropTypes.Requireable<{
484
+ customStyle: import("prop-types").Requireable<{
486
485
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
487
486
  }>;
488
487
  }> | null | undefined)[]>;
489
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
490
- menuButtonClassName: PropTypes.Requireable<string>;
491
- isBulkMenu: PropTypes.Requireable<boolean>;
488
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
489
+ menuButtonClassName: import("prop-types").Requireable<string>;
490
+ isBulkMenu: import("prop-types").Requireable<boolean>;
492
491
  }> | null | undefined>>;
493
- isNestedTable: PropTypes.Requireable<boolean>;
494
- emptyStateFirstMessage: PropTypes.Requireable<string>;
495
- emptyStateSecondMessage: PropTypes.Requireable<string>;
492
+ isNestedTable: import("prop-types").Requireable<boolean>;
493
+ emptyStateFirstMessage: import("prop-types").Requireable<string>;
494
+ emptyStateSecondMessage: import("prop-types").Requireable<string>;
496
495
  }> | null | undefined>>;
497
- title: PropTypes.Requireable<NonNullable<string | PropTypes.InferProps<{
498
- title: PropTypes.Requireable<string>;
499
- subtitle: PropTypes.Requireable<string>;
500
- type: PropTypes.Requireable<string>;
501
- 'data-name': PropTypes.Requireable<string>;
502
- titleSize: PropTypes.Requireable<string>;
503
- subtitleSize: PropTypes.Requireable<string>;
504
- icon: PropTypes.Requireable<PropTypes.InferProps<any>>;
505
- tag: PropTypes.Requireable<PropTypes.InferProps<{
506
- label: PropTypes.Requireable<string>;
507
- type: PropTypes.Requireable<string>;
508
- size: PropTypes.Requireable<string>;
509
- customStyle: PropTypes.Requireable<{
496
+ title: import("prop-types").Requireable<NonNullable<string | import("prop-types").InferProps<{
497
+ title: import("prop-types").Requireable<string>;
498
+ subtitle: import("prop-types").Requireable<string>;
499
+ type: import("prop-types").Requireable<string>;
500
+ 'data-name': import("prop-types").Requireable<string>;
501
+ titleSize: import("prop-types").Requireable<string>;
502
+ subtitleSize: import("prop-types").Requireable<string>;
503
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
504
+ tag: import("prop-types").Requireable<import("prop-types").InferProps<{
505
+ label: import("prop-types").Requireable<string>;
506
+ type: import("prop-types").Requireable<string>;
507
+ size: import("prop-types").Requireable<string>;
508
+ customStyle: import("prop-types").Requireable<{
510
509
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
511
510
  }>;
512
- icon: PropTypes.Requireable<PropTypes.InferProps<any>>;
511
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
513
512
  }>>;
514
- button: PropTypes.Requireable<PropTypes.InferProps<{
515
- type: PropTypes.Requireable<string>;
516
- usage: PropTypes.Requireable<string>;
517
- label: PropTypes.Requireable<string>;
518
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
519
- 'aria-label': PropTypes.Requireable<string>;
520
- tooltipText: PropTypes.Requireable<string>;
521
- tooltipPlacement: PropTypes.Requireable<string>;
522
- 'data-name': PropTypes.Requireable<string>;
523
- 'data-testid': PropTypes.Requireable<string>;
524
- icon: PropTypes.Requireable<PropTypes.InferProps<{
525
- position: PropTypes.Requireable<string>;
526
- type: PropTypes.Requireable<string>;
527
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
528
- name: PropTypes.Validator<string>;
529
- color: PropTypes.Requireable<string>;
530
- backgroundColor: PropTypes.Requireable<string>;
531
- size: PropTypes.Requireable<number>;
532
- customStyle: PropTypes.Requireable<{
513
+ button: import("prop-types").Requireable<import("prop-types").InferProps<{
514
+ type: import("prop-types").Requireable<string>;
515
+ usage: import("prop-types").Requireable<string>;
516
+ label: import("prop-types").Requireable<string>;
517
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
518
+ 'aria-label': import("prop-types").Requireable<string>;
519
+ tooltipText: import("prop-types").Requireable<string>;
520
+ tooltipPlacement: import("prop-types").Requireable<string>;
521
+ 'data-name': import("prop-types").Requireable<string>;
522
+ 'data-testid': import("prop-types").Requireable<string>;
523
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
524
+ position: import("prop-types").Requireable<string>;
525
+ type: import("prop-types").Requireable<string>;
526
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
527
+ name: import("prop-types").Validator<string>;
528
+ color: import("prop-types").Requireable<string>;
529
+ backgroundColor: import("prop-types").Requireable<string>;
530
+ size: import("prop-types").Requireable<number>;
531
+ customStyle: import("prop-types").Requireable<{
533
532
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
534
533
  }>;
535
534
  }>>;
536
535
  }>>;
537
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
538
- link: PropTypes.Requireable<PropTypes.InferProps<{
539
- href: PropTypes.Requireable<string>;
540
- download: PropTypes.Requireable<boolean>;
541
- target: PropTypes.Requireable<string>;
536
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
537
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
538
+ href: import("prop-types").Requireable<string>;
539
+ download: import("prop-types").Requireable<boolean>;
540
+ target: import("prop-types").Requireable<string>;
542
541
  }>>;
543
- hoverBackgroundColor: PropTypes.Requireable<string>;
544
- hoverColor: PropTypes.Requireable<string>;
545
- disabled: PropTypes.Requireable<boolean>;
546
- className: PropTypes.Requireable<string>;
547
- customStyle: PropTypes.Requireable<{
542
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
543
+ hoverColor: import("prop-types").Requireable<string>;
544
+ disabled: import("prop-types").Requireable<boolean>;
545
+ className: import("prop-types").Requireable<string>;
546
+ customStyle: import("prop-types").Requireable<{
548
547
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
549
548
  }>;
550
549
  }>>;
551
- required: PropTypes.Requireable<boolean>;
550
+ required: import("prop-types").Requireable<boolean>;
552
551
  }> | null | undefined>>;
553
- isFetching: PropTypes.Requireable<boolean>;
554
- search: PropTypes.Requireable<PropTypes.InferProps<{
555
- value: PropTypes.Requireable<string>;
556
- placeholder: PropTypes.Validator<string>;
557
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
558
- onClear: PropTypes.Requireable<(...args: any[]) => any>;
559
- onFocus: PropTypes.Requireable<(...args: any[]) => any>;
560
- onBlur: PropTypes.Requireable<(...args: any[]) => any>;
561
- theme: PropTypes.Requireable<string>;
562
- dataTestId: PropTypes.Requireable<string>;
552
+ isFetching: import("prop-types").Requireable<boolean>;
553
+ search: import("prop-types").Requireable<import("prop-types").InferProps<{
554
+ value: import("prop-types").Requireable<string>;
555
+ placeholder: import("prop-types").Validator<string>;
556
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
557
+ onClear: import("prop-types").Requireable<(...args: any[]) => any>;
558
+ onFocus: import("prop-types").Requireable<(...args: any[]) => any>;
559
+ onBlur: import("prop-types").Requireable<(...args: any[]) => any>;
560
+ theme: import("prop-types").Requireable<string>;
561
+ dataTestId: import("prop-types").Requireable<string>;
563
562
  }>>;
564
- checkboxWithTitle: PropTypes.Requireable<PropTypes.InferProps<{
565
- title: PropTypes.Requireable<string>;
566
- name: PropTypes.Requireable<string>;
567
- checked: PropTypes.Requireable<boolean>;
568
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
569
- 'aria-label': PropTypes.Requireable<string>;
570
- 'data-name': PropTypes.Requireable<string>;
571
- icon: PropTypes.Requireable<PropTypes.InferProps<{
572
- iconName: PropTypes.Requireable<string>;
573
- iconColor: PropTypes.Requireable<string>;
574
- preset: PropTypes.Requireable<string>;
563
+ checkboxWithTitle: import("prop-types").Requireable<import("prop-types").InferProps<{
564
+ title: import("prop-types").Requireable<string>;
565
+ name: import("prop-types").Requireable<string>;
566
+ checked: import("prop-types").Requireable<boolean>;
567
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
568
+ 'aria-label': import("prop-types").Requireable<string>;
569
+ 'data-name': import("prop-types").Requireable<string>;
570
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
571
+ iconName: import("prop-types").Requireable<string>;
572
+ iconColor: import("prop-types").Requireable<string>;
573
+ preset: import("prop-types").Requireable<string>;
575
574
  }>>;
576
- customStyle: PropTypes.Requireable<{
575
+ customStyle: import("prop-types").Requireable<{
577
576
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
578
577
  }>;
579
578
  }>>;
580
- actionButtons: PropTypes.Requireable<(PropTypes.InferProps<{
581
- type: PropTypes.Requireable<string>;
582
- usage: PropTypes.Requireable<string>;
583
- label: PropTypes.Requireable<string>;
584
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
585
- 'aria-label': PropTypes.Requireable<string>;
586
- tooltipText: PropTypes.Requireable<string>;
587
- tooltipPlacement: PropTypes.Requireable<string>;
588
- 'data-name': PropTypes.Requireable<string>;
589
- 'data-testid': PropTypes.Requireable<string>;
590
- icon: PropTypes.Requireable<PropTypes.InferProps<{
591
- position: PropTypes.Requireable<string>;
592
- type: PropTypes.Requireable<string>;
593
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
594
- name: PropTypes.Validator<string>;
595
- color: PropTypes.Requireable<string>;
596
- backgroundColor: PropTypes.Requireable<string>;
597
- size: PropTypes.Requireable<number>;
598
- customStyle: PropTypes.Requireable<{
579
+ actionButtons: import("prop-types").Requireable<(import("prop-types").InferProps<{
580
+ type: import("prop-types").Requireable<string>;
581
+ usage: import("prop-types").Requireable<string>;
582
+ label: import("prop-types").Requireable<string>;
583
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
584
+ 'aria-label': import("prop-types").Requireable<string>;
585
+ tooltipText: import("prop-types").Requireable<string>;
586
+ tooltipPlacement: import("prop-types").Requireable<string>;
587
+ 'data-name': import("prop-types").Requireable<string>;
588
+ 'data-testid': import("prop-types").Requireable<string>;
589
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
590
+ position: import("prop-types").Requireable<string>;
591
+ type: import("prop-types").Requireable<string>;
592
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
593
+ name: import("prop-types").Validator<string>;
594
+ color: import("prop-types").Requireable<string>;
595
+ backgroundColor: import("prop-types").Requireable<string>;
596
+ size: import("prop-types").Requireable<number>;
597
+ customStyle: import("prop-types").Requireable<{
599
598
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
600
599
  }>;
601
600
  }>>;
602
601
  }>>;
603
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
604
- link: PropTypes.Requireable<PropTypes.InferProps<{
605
- href: PropTypes.Requireable<string>;
606
- download: PropTypes.Requireable<boolean>;
607
- target: PropTypes.Requireable<string>;
602
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
603
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
604
+ href: import("prop-types").Requireable<string>;
605
+ download: import("prop-types").Requireable<boolean>;
606
+ target: import("prop-types").Requireable<string>;
608
607
  }>>;
609
- hoverBackgroundColor: PropTypes.Requireable<string>;
610
- hoverColor: PropTypes.Requireable<string>;
611
- disabled: PropTypes.Requireable<boolean>;
612
- className: PropTypes.Requireable<string>;
613
- customStyle: PropTypes.Requireable<{
608
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
609
+ hoverColor: import("prop-types").Requireable<string>;
610
+ disabled: import("prop-types").Requireable<boolean>;
611
+ className: import("prop-types").Requireable<string>;
612
+ customStyle: import("prop-types").Requireable<{
614
613
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
615
614
  }>;
616
615
  }> | null | undefined)[]>;
617
- buttonMenuAction: PropTypes.Requireable<PropTypes.InferProps<{
618
- button: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
619
- type: PropTypes.Requireable<string>;
620
- usage: PropTypes.Requireable<string>;
621
- label: PropTypes.Requireable<string>;
622
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
623
- 'aria-label': PropTypes.Requireable<string>;
624
- tooltipText: PropTypes.Requireable<string>;
625
- tooltipPlacement: PropTypes.Requireable<string>;
626
- 'data-name': PropTypes.Requireable<string>;
627
- 'data-testid': PropTypes.Requireable<string>;
628
- icon: PropTypes.Requireable<PropTypes.InferProps<{
629
- position: PropTypes.Requireable<string>;
630
- type: PropTypes.Requireable<string>;
631
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
632
- name: PropTypes.Validator<string>;
633
- color: PropTypes.Requireable<string>;
634
- backgroundColor: PropTypes.Requireable<string>;
635
- size: PropTypes.Requireable<number>;
636
- customStyle: PropTypes.Requireable<{
616
+ buttonMenuAction: import("prop-types").Requireable<import("prop-types").InferProps<{
617
+ button: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
618
+ type: import("prop-types").Requireable<string>;
619
+ usage: import("prop-types").Requireable<string>;
620
+ label: import("prop-types").Requireable<string>;
621
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
622
+ 'aria-label': import("prop-types").Requireable<string>;
623
+ tooltipText: import("prop-types").Requireable<string>;
624
+ tooltipPlacement: import("prop-types").Requireable<string>;
625
+ 'data-name': import("prop-types").Requireable<string>;
626
+ 'data-testid': import("prop-types").Requireable<string>;
627
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
628
+ position: import("prop-types").Requireable<string>;
629
+ type: import("prop-types").Requireable<string>;
630
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
631
+ name: import("prop-types").Validator<string>;
632
+ color: import("prop-types").Requireable<string>;
633
+ backgroundColor: import("prop-types").Requireable<string>;
634
+ size: import("prop-types").Requireable<number>;
635
+ customStyle: import("prop-types").Requireable<{
637
636
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
638
637
  }>;
639
638
  }>>;
640
639
  }>>;
641
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
642
- link: PropTypes.Requireable<PropTypes.InferProps<{
643
- href: PropTypes.Requireable<string>;
644
- download: PropTypes.Requireable<boolean>;
645
- target: PropTypes.Requireable<string>;
640
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
641
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
642
+ href: import("prop-types").Requireable<string>;
643
+ download: import("prop-types").Requireable<boolean>;
644
+ target: import("prop-types").Requireable<string>;
646
645
  }>>;
647
- hoverBackgroundColor: PropTypes.Requireable<string>;
648
- hoverColor: PropTypes.Requireable<string>;
649
- disabled: PropTypes.Requireable<boolean>;
650
- className: PropTypes.Requireable<string>;
651
- customStyle: PropTypes.Requireable<{
646
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
647
+ hoverColor: import("prop-types").Requireable<string>;
648
+ disabled: import("prop-types").Requireable<boolean>;
649
+ className: import("prop-types").Requireable<string>;
650
+ customStyle: import("prop-types").Requireable<{
652
651
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
653
652
  }>;
654
653
  }>>>;
655
- menu: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
656
- buttons: PropTypes.Validator<(PropTypes.InferProps<{
657
- 'data-name': PropTypes.Requireable<string>;
658
- disabled: PropTypes.Requireable<boolean>;
659
- label: PropTypes.Validator<string>;
660
- onClick: PropTypes.Validator<(...args: any[]) => any>;
661
- type: PropTypes.Requireable<string>;
662
- buttonLinkType: PropTypes.Requireable<string>;
663
- icon: PropTypes.Requireable<PropTypes.InferProps<{
664
- theme: PropTypes.Requireable<string>;
665
- position: PropTypes.Requireable<string>;
666
- type: PropTypes.Requireable<string>;
667
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
668
- name: PropTypes.Validator<string>;
669
- color: PropTypes.Requireable<string>;
670
- backgroundColor: PropTypes.Requireable<string>;
671
- size: PropTypes.Requireable<number>;
672
- customStyle: PropTypes.Requireable<{
654
+ menu: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
655
+ buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
656
+ 'data-name': import("prop-types").Requireable<string>;
657
+ disabled: import("prop-types").Requireable<boolean>;
658
+ label: import("prop-types").Validator<string>;
659
+ onClick: import("prop-types").Validator<(...args: any[]) => any>;
660
+ type: import("prop-types").Requireable<string>;
661
+ buttonLinkType: import("prop-types").Requireable<string>;
662
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
663
+ theme: import("prop-types").Requireable<string>;
664
+ position: import("prop-types").Requireable<string>;
665
+ type: import("prop-types").Requireable<string>;
666
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
667
+ name: import("prop-types").Validator<string>;
668
+ color: import("prop-types").Requireable<string>;
669
+ backgroundColor: import("prop-types").Requireable<string>;
670
+ size: import("prop-types").Requireable<number>;
671
+ customStyle: import("prop-types").Requireable<{
673
672
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
674
673
  }>;
675
674
  }>>;
676
675
  }>>;
677
- customStyle: PropTypes.Requireable<{
676
+ customStyle: import("prop-types").Requireable<{
678
677
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
679
678
  }>;
680
679
  }> | null | undefined)[]>;
681
- 'data-name': PropTypes.Requireable<string>;
682
- 'aria-label': PropTypes.Requireable<string>;
680
+ 'data-name': import("prop-types").Requireable<string>;
681
+ 'aria-label': import("prop-types").Requireable<string>;
683
682
  }>>>;
684
- menuWrapper: PropTypes.Requireable<PropTypes.InferProps<{
685
- ariaLabel: PropTypes.Requireable<string>;
686
- customStyle: PropTypes.Requireable<{
683
+ menuWrapper: import("prop-types").Requireable<import("prop-types").InferProps<{
684
+ ariaLabel: import("prop-types").Requireable<string>;
685
+ customStyle: import("prop-types").Requireable<{
687
686
  [x: string]: NonNullable<string | number | object | null | undefined> | null | undefined;
688
687
  }>;
689
688
  }>>;
690
689
  }>>;
691
690
  }>>>;
692
- content: PropTypes.Requireable<PropTypes.InferProps<{
693
- title: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
694
- title: PropTypes.Requireable<string>;
695
- subtitle: PropTypes.Requireable<string>;
696
- type: PropTypes.Requireable<string>;
697
- 'data-name': PropTypes.Requireable<string>;
698
- titleSize: PropTypes.Requireable<string>;
699
- subtitleSize: PropTypes.Requireable<string>;
700
- icon: PropTypes.Requireable<PropTypes.InferProps<any>>;
701
- tag: PropTypes.Requireable<PropTypes.InferProps<{
702
- label: PropTypes.Requireable<string>;
703
- type: PropTypes.Requireable<string>;
704
- size: PropTypes.Requireable<string>;
705
- customStyle: PropTypes.Requireable<{
691
+ content: import("prop-types").Requireable<import("prop-types").InferProps<{
692
+ title: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
693
+ title: import("prop-types").Requireable<string>;
694
+ subtitle: import("prop-types").Requireable<string>;
695
+ type: import("prop-types").Requireable<string>;
696
+ 'data-name': import("prop-types").Requireable<string>;
697
+ titleSize: import("prop-types").Requireable<string>;
698
+ subtitleSize: import("prop-types").Requireable<string>;
699
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
700
+ tag: import("prop-types").Requireable<import("prop-types").InferProps<{
701
+ label: import("prop-types").Requireable<string>;
702
+ type: import("prop-types").Requireable<string>;
703
+ size: import("prop-types").Requireable<string>;
704
+ customStyle: import("prop-types").Requireable<{
706
705
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
707
706
  }>;
708
- icon: PropTypes.Requireable<PropTypes.InferProps<any>>;
707
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
709
708
  }>>;
710
- button: PropTypes.Requireable<PropTypes.InferProps<{
711
- type: PropTypes.Requireable<string>;
712
- usage: PropTypes.Requireable<string>;
713
- label: PropTypes.Requireable<string>;
714
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
715
- 'aria-label': PropTypes.Requireable<string>;
716
- tooltipText: PropTypes.Requireable<string>;
717
- tooltipPlacement: PropTypes.Requireable<string>;
718
- 'data-name': PropTypes.Requireable<string>;
719
- 'data-testid': PropTypes.Requireable<string>;
720
- icon: PropTypes.Requireable<PropTypes.InferProps<{
721
- position: PropTypes.Requireable<string>;
722
- type: PropTypes.Requireable<string>;
723
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
724
- name: PropTypes.Validator<string>;
725
- color: PropTypes.Requireable<string>;
726
- backgroundColor: PropTypes.Requireable<string>;
727
- size: PropTypes.Requireable<number>;
728
- customStyle: PropTypes.Requireable<{
709
+ button: import("prop-types").Requireable<import("prop-types").InferProps<{
710
+ type: import("prop-types").Requireable<string>;
711
+ usage: import("prop-types").Requireable<string>;
712
+ label: import("prop-types").Requireable<string>;
713
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
714
+ 'aria-label': import("prop-types").Requireable<string>;
715
+ tooltipText: import("prop-types").Requireable<string>;
716
+ tooltipPlacement: import("prop-types").Requireable<string>;
717
+ 'data-name': import("prop-types").Requireable<string>;
718
+ 'data-testid': import("prop-types").Requireable<string>;
719
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
720
+ position: import("prop-types").Requireable<string>;
721
+ type: import("prop-types").Requireable<string>;
722
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
723
+ name: import("prop-types").Validator<string>;
724
+ color: import("prop-types").Requireable<string>;
725
+ backgroundColor: import("prop-types").Requireable<string>;
726
+ size: import("prop-types").Requireable<number>;
727
+ customStyle: import("prop-types").Requireable<{
729
728
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
730
729
  }>;
731
730
  }>>;
732
731
  }>>;
733
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
734
- link: PropTypes.Requireable<PropTypes.InferProps<{
735
- href: PropTypes.Requireable<string>;
736
- download: PropTypes.Requireable<boolean>;
737
- target: PropTypes.Requireable<string>;
732
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
733
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
734
+ href: import("prop-types").Requireable<string>;
735
+ download: import("prop-types").Requireable<boolean>;
736
+ target: import("prop-types").Requireable<string>;
738
737
  }>>;
739
- hoverBackgroundColor: PropTypes.Requireable<string>;
740
- hoverColor: PropTypes.Requireable<string>;
741
- disabled: PropTypes.Requireable<boolean>;
742
- className: PropTypes.Requireable<string>;
743
- customStyle: PropTypes.Requireable<{
738
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
739
+ hoverColor: import("prop-types").Requireable<string>;
740
+ disabled: import("prop-types").Requireable<boolean>;
741
+ className: import("prop-types").Requireable<string>;
742
+ customStyle: import("prop-types").Requireable<{
744
743
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
745
744
  }>;
746
745
  }>>;
747
- required: PropTypes.Requireable<boolean>;
746
+ required: import("prop-types").Requireable<boolean>;
748
747
  }>>>;
749
- listContent: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
750
- 'aria-label': PropTypes.Requireable<string>;
751
- buttonLink: PropTypes.Requireable<PropTypes.InferProps<{
752
- type: PropTypes.Requireable<string>;
753
- usage: PropTypes.Requireable<string>;
754
- label: PropTypes.Requireable<string>;
755
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
756
- 'aria-label': PropTypes.Requireable<string>;
757
- tooltipText: PropTypes.Requireable<string>;
758
- tooltipPlacement: PropTypes.Requireable<string>;
759
- 'data-name': PropTypes.Requireable<string>;
760
- 'data-testid': PropTypes.Requireable<string>;
761
- icon: PropTypes.Requireable<PropTypes.InferProps<{
762
- position: PropTypes.Requireable<string>;
763
- type: PropTypes.Requireable<string>;
764
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
765
- name: PropTypes.Validator<string>;
766
- color: PropTypes.Requireable<string>;
767
- backgroundColor: PropTypes.Requireable<string>;
768
- size: PropTypes.Requireable<number>;
769
- customStyle: PropTypes.Requireable<{
748
+ listContent: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
749
+ 'aria-label': import("prop-types").Requireable<string>;
750
+ buttonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
751
+ type: import("prop-types").Requireable<string>;
752
+ usage: import("prop-types").Requireable<string>;
753
+ label: import("prop-types").Requireable<string>;
754
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
755
+ 'aria-label': import("prop-types").Requireable<string>;
756
+ tooltipText: import("prop-types").Requireable<string>;
757
+ tooltipPlacement: import("prop-types").Requireable<string>;
758
+ 'data-name': import("prop-types").Requireable<string>;
759
+ 'data-testid': import("prop-types").Requireable<string>;
760
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
761
+ position: import("prop-types").Requireable<string>;
762
+ type: import("prop-types").Requireable<string>;
763
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
764
+ name: import("prop-types").Validator<string>;
765
+ color: import("prop-types").Requireable<string>;
766
+ backgroundColor: import("prop-types").Requireable<string>;
767
+ size: import("prop-types").Requireable<number>;
768
+ customStyle: import("prop-types").Requireable<{
770
769
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
771
770
  }>;
772
771
  }>>;
773
772
  }>>;
774
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
775
- link: PropTypes.Requireable<PropTypes.InferProps<{
776
- href: PropTypes.Requireable<string>;
777
- download: PropTypes.Requireable<boolean>;
778
- target: PropTypes.Requireable<string>;
773
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
774
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
775
+ href: import("prop-types").Requireable<string>;
776
+ download: import("prop-types").Requireable<boolean>;
777
+ target: import("prop-types").Requireable<string>;
779
778
  }>>;
780
- hoverBackgroundColor: PropTypes.Requireable<string>;
781
- hoverColor: PropTypes.Requireable<string>;
782
- disabled: PropTypes.Requireable<boolean>;
783
- className: PropTypes.Requireable<string>;
784
- customStyle: PropTypes.Requireable<{
779
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
780
+ hoverColor: import("prop-types").Requireable<string>;
781
+ disabled: import("prop-types").Requireable<boolean>;
782
+ className: import("prop-types").Requireable<string>;
783
+ customStyle: import("prop-types").Requireable<{
785
784
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
786
785
  }>;
787
786
  }>>;
788
- selectMultiple: PropTypes.Requireable<PropTypes.InferProps<{
789
- title: PropTypes.Requireable<string>;
790
- placeholder: PropTypes.Requireable<string>;
791
- description: PropTypes.Requireable<string>;
792
- hint: PropTypes.Requireable<string>;
793
- options: PropTypes.Requireable<NonNullable<PropTypes.InferProps<{
794
- selected: PropTypes.Validator<boolean>;
795
- name: PropTypes.Validator<string>;
796
- value: PropTypes.Requireable<string>;
787
+ selectMultiple: import("prop-types").Requireable<import("prop-types").InferProps<{
788
+ title: import("prop-types").Requireable<string>;
789
+ placeholder: import("prop-types").Requireable<string>;
790
+ description: import("prop-types").Requireable<string>;
791
+ hint: import("prop-types").Requireable<string>;
792
+ options: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
793
+ selected: import("prop-types").Validator<boolean>;
794
+ name: import("prop-types").Validator<string>;
795
+ value: import("prop-types").Requireable<string>;
797
796
  }>>[]>;
798
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
799
- onError: PropTypes.Requireable<(...args: any[]) => any>;
800
- multiple: PropTypes.Requireable<boolean>;
801
- modified: PropTypes.Requireable<boolean>;
802
- disabled: PropTypes.Requireable<boolean>;
803
- error: PropTypes.Requireable<string>;
804
- theme: PropTypes.Requireable<string>;
797
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
798
+ onError: import("prop-types").Requireable<(...args: any[]) => any>;
799
+ multiple: import("prop-types").Requireable<boolean>;
800
+ modified: import("prop-types").Requireable<boolean>;
801
+ disabled: import("prop-types").Requireable<boolean>;
802
+ error: import("prop-types").Requireable<string>;
803
+ theme: import("prop-types").Requireable<string>;
805
804
  }>>;
806
- content: PropTypes.Requireable<NonNullable<PropTypes.InferProps<{
807
- items: PropTypes.Requireable<(PropTypes.InferProps<{
808
- title: PropTypes.Validator<string>;
809
- subtitle: PropTypes.Requireable<string>;
810
- 'data-name': PropTypes.Requireable<string>;
811
- provider: PropTypes.Requireable<PropTypes.InferProps<{
812
- label: PropTypes.Requireable<string>;
813
- type: PropTypes.Requireable<string>;
805
+ content: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
806
+ items: import("prop-types").Requireable<(import("prop-types").InferProps<{
807
+ title: import("prop-types").Validator<string>;
808
+ subtitle: import("prop-types").Requireable<string>;
809
+ 'data-name': import("prop-types").Requireable<string>;
810
+ provider: import("prop-types").Requireable<import("prop-types").InferProps<{
811
+ label: import("prop-types").Requireable<string>;
812
+ type: import("prop-types").Requireable<string>;
814
813
  }>>;
815
- selected: PropTypes.Requireable<boolean>;
816
- selectedColor: PropTypes.Requireable<string>;
817
- dataColumns: PropTypes.Requireable<(PropTypes.InferProps<{
818
- label: PropTypes.Requireable<string>;
819
- type: PropTypes.Requireable<string>;
820
- className: PropTypes.Requireable<string>;
814
+ selected: import("prop-types").Requireable<boolean>;
815
+ selectedColor: import("prop-types").Requireable<string>;
816
+ dataColumns: import("prop-types").Requireable<(import("prop-types").InferProps<{
817
+ label: import("prop-types").Requireable<string>;
818
+ type: import("prop-types").Requireable<string>;
819
+ className: import("prop-types").Requireable<string>;
821
820
  }> | null | undefined)[]>;
822
- buttonLink: PropTypes.Requireable<PropTypes.InferProps<{
823
- type: PropTypes.Requireable<string>;
824
- label: PropTypes.Requireable<string>;
825
- ariaLabel: PropTypes.Requireable<string>;
826
- dataName: PropTypes.Requireable<string>;
827
- icon: PropTypes.Requireable<PropTypes.InferProps<{
828
- position: PropTypes.Requireable<string>;
829
- type: PropTypes.Requireable<string>;
821
+ buttonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
822
+ type: import("prop-types").Requireable<string>;
823
+ label: import("prop-types").Requireable<string>;
824
+ ariaLabel: import("prop-types").Requireable<string>;
825
+ dataName: import("prop-types").Requireable<string>;
826
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
827
+ position: import("prop-types").Requireable<string>;
828
+ type: import("prop-types").Requireable<string>;
830
829
  }>>;
831
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
830
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
832
831
  }>>;
833
- secondButtonLink: PropTypes.Requireable<PropTypes.InferProps<{
834
- type: PropTypes.Requireable<string>;
835
- label: PropTypes.Requireable<string>;
836
- ariaLabel: PropTypes.Requireable<string>;
837
- dataName: PropTypes.Requireable<string>;
838
- icon: PropTypes.Requireable<PropTypes.InferProps<{
839
- position: PropTypes.Requireable<string>;
840
- type: PropTypes.Requireable<string>;
832
+ secondButtonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
833
+ type: import("prop-types").Requireable<string>;
834
+ label: import("prop-types").Requireable<string>;
835
+ ariaLabel: import("prop-types").Requireable<string>;
836
+ dataName: import("prop-types").Requireable<string>;
837
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
838
+ position: import("prop-types").Requireable<string>;
839
+ type: import("prop-types").Requireable<string>;
841
840
  }>>;
842
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
841
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
843
842
  }>>;
844
- bulletPointMenuButton: PropTypes.Requireable<PropTypes.InferProps<{
845
- buttonAriaLabel: PropTypes.Requireable<string>;
846
- menuAriaLabel: PropTypes.Requireable<string>;
847
- buttons: PropTypes.Requireable<(PropTypes.InferProps<{
848
- 'data-name': PropTypes.Requireable<string>;
849
- label: PropTypes.Requireable<string>;
850
- type: PropTypes.Requireable<string>;
851
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
843
+ bulletPointMenuButton: import("prop-types").Requireable<import("prop-types").InferProps<{
844
+ buttonAriaLabel: import("prop-types").Requireable<string>;
845
+ menuAriaLabel: import("prop-types").Requireable<string>;
846
+ buttons: import("prop-types").Requireable<(import("prop-types").InferProps<{
847
+ 'data-name': import("prop-types").Requireable<string>;
848
+ label: import("prop-types").Requireable<string>;
849
+ type: import("prop-types").Requireable<string>;
850
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
852
851
  }> | null | undefined)[]>;
853
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
852
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
854
853
  }>>;
855
- tags: PropTypes.Requireable<(PropTypes.InferProps<{
856
- label: PropTypes.Requireable<string>;
857
- type: PropTypes.Requireable<string>;
854
+ tags: import("prop-types").Requireable<(import("prop-types").InferProps<{
855
+ label: import("prop-types").Requireable<string>;
856
+ type: import("prop-types").Requireable<string>;
858
857
  }> | null | undefined)[]>;
859
- disabled: PropTypes.Requireable<boolean>;
860
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
861
- isBulkStyle: PropTypes.Requireable<boolean>;
862
- isOverflowHidden: PropTypes.Requireable<boolean>;
863
- order: PropTypes.Requireable<number>;
864
- 'aria-label': PropTypes.Requireable<string>;
865
- contentType: PropTypes.Requireable<string>;
866
- id: PropTypes.Requireable<string>;
867
- leftIcon: PropTypes.Requireable<PropTypes.InferProps<{
868
- iconName: PropTypes.Requireable<string>;
869
- iconColor: PropTypes.Requireable<string>;
870
- backgroundColor: PropTypes.Requireable<string>;
871
- borderRadius: PropTypes.Requireable<string>;
872
- preset: PropTypes.Requireable<string>;
873
- gradientBackground: PropTypes.Requireable<boolean>;
874
- size: PropTypes.Requireable<number>;
875
- wrapperSize: PropTypes.Requireable<number>;
858
+ disabled: import("prop-types").Requireable<boolean>;
859
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
860
+ isBulkStyle: import("prop-types").Requireable<boolean>;
861
+ isOverflowHidden: import("prop-types").Requireable<boolean>;
862
+ order: import("prop-types").Requireable<number>;
863
+ 'aria-label': import("prop-types").Requireable<string>;
864
+ contentType: import("prop-types").Requireable<string>;
865
+ id: import("prop-types").Requireable<string>;
866
+ leftIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
867
+ iconName: import("prop-types").Requireable<string>;
868
+ iconColor: import("prop-types").Requireable<string>;
869
+ backgroundColor: import("prop-types").Requireable<string>;
870
+ borderRadius: import("prop-types").Requireable<string>;
871
+ preset: import("prop-types").Requireable<string>;
872
+ gradientBackground: import("prop-types").Requireable<boolean>;
873
+ size: import("prop-types").Requireable<number>;
874
+ wrapperSize: import("prop-types").Requireable<number>;
876
875
  }>>;
877
- image: PropTypes.Requireable<string>;
878
- checkbox: PropTypes.Requireable<PropTypes.InferProps<{
879
- title: PropTypes.Requireable<string>;
880
- name: PropTypes.Requireable<string>;
881
- checked: PropTypes.Requireable<boolean>;
882
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
883
- 'aria-label': PropTypes.Requireable<string>;
884
- 'data-name': PropTypes.Requireable<string>;
885
- icon: PropTypes.Requireable<PropTypes.InferProps<{
886
- iconName: PropTypes.Requireable<string>;
887
- iconColor: PropTypes.Requireable<string>;
888
- preset: PropTypes.Requireable<string>;
876
+ image: import("prop-types").Requireable<string>;
877
+ checkbox: import("prop-types").Requireable<import("prop-types").InferProps<{
878
+ title: import("prop-types").Requireable<string>;
879
+ name: import("prop-types").Requireable<string>;
880
+ checked: import("prop-types").Requireable<boolean>;
881
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
882
+ 'aria-label': import("prop-types").Requireable<string>;
883
+ 'data-name': import("prop-types").Requireable<string>;
884
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
885
+ iconName: import("prop-types").Requireable<string>;
886
+ iconColor: import("prop-types").Requireable<string>;
887
+ preset: import("prop-types").Requireable<string>;
889
888
  }>>;
890
- customStyle: PropTypes.Requireable<{
889
+ customStyle: import("prop-types").Requireable<{
891
890
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
892
891
  }>;
893
892
  }>>;
894
893
  }> | null | undefined)[]>;
895
- type: PropTypes.Requireable<string>;
896
- itemType: PropTypes.Requireable<string>;
897
- onDrop: PropTypes.Requireable<(...args: any[]) => any>;
898
- isDraggable: PropTypes.Requireable<boolean>;
899
- tableHeader: PropTypes.Requireable<(string | null | undefined)[]>;
900
- emptyResult: PropTypes.Requireable<PropTypes.InferProps<{
901
- title: PropTypes.Requireable<string>;
902
- description: PropTypes.Requireable<string>;
903
- button: PropTypes.Requireable<NonNullable<PropTypes.InferProps<{
904
- type: PropTypes.Requireable<string>;
905
- usage: PropTypes.Requireable<string>;
906
- label: PropTypes.Requireable<string>;
907
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
908
- 'aria-label': PropTypes.Requireable<string>;
909
- tooltipText: PropTypes.Requireable<string>;
910
- tooltipPlacement: PropTypes.Requireable<string>;
911
- 'data-name': PropTypes.Requireable<string>;
912
- 'data-testid': PropTypes.Requireable<string>;
913
- icon: PropTypes.Requireable<PropTypes.InferProps<{
914
- position: PropTypes.Requireable<string>;
915
- type: PropTypes.Requireable<string>;
916
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
917
- name: PropTypes.Validator<string>;
918
- color: PropTypes.Requireable<string>;
919
- backgroundColor: PropTypes.Requireable<string>;
920
- size: PropTypes.Requireable<number>;
921
- customStyle: PropTypes.Requireable<{
894
+ type: import("prop-types").Requireable<string>;
895
+ itemType: import("prop-types").Requireable<string>;
896
+ onDrop: import("prop-types").Requireable<(...args: any[]) => any>;
897
+ isDraggable: import("prop-types").Requireable<boolean>;
898
+ tableHeader: import("prop-types").Requireable<(string | null | undefined)[]>;
899
+ emptyResult: import("prop-types").Requireable<import("prop-types").InferProps<{
900
+ title: import("prop-types").Requireable<string>;
901
+ description: import("prop-types").Requireable<string>;
902
+ button: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
903
+ type: import("prop-types").Requireable<string>;
904
+ usage: import("prop-types").Requireable<string>;
905
+ label: import("prop-types").Requireable<string>;
906
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
907
+ 'aria-label': import("prop-types").Requireable<string>;
908
+ tooltipText: import("prop-types").Requireable<string>;
909
+ tooltipPlacement: import("prop-types").Requireable<string>;
910
+ 'data-name': import("prop-types").Requireable<string>;
911
+ 'data-testid': import("prop-types").Requireable<string>;
912
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
913
+ position: import("prop-types").Requireable<string>;
914
+ type: import("prop-types").Requireable<string>;
915
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
916
+ name: import("prop-types").Validator<string>;
917
+ color: import("prop-types").Requireable<string>;
918
+ backgroundColor: import("prop-types").Requireable<string>;
919
+ size: import("prop-types").Requireable<number>;
920
+ customStyle: import("prop-types").Requireable<{
922
921
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
923
922
  }>;
924
923
  }>>;
925
924
  }>>;
926
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
927
- link: PropTypes.Requireable<PropTypes.InferProps<{
928
- href: PropTypes.Requireable<string>;
929
- download: PropTypes.Requireable<boolean>;
930
- target: PropTypes.Requireable<string>;
925
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
926
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
927
+ href: import("prop-types").Requireable<string>;
928
+ download: import("prop-types").Requireable<boolean>;
929
+ target: import("prop-types").Requireable<string>;
931
930
  }>>;
932
- hoverBackgroundColor: PropTypes.Requireable<string>;
933
- hoverColor: PropTypes.Requireable<string>;
934
- disabled: PropTypes.Requireable<boolean>;
935
- className: PropTypes.Requireable<string>;
936
- customStyle: PropTypes.Requireable<{
931
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
932
+ hoverColor: import("prop-types").Requireable<string>;
933
+ disabled: import("prop-types").Requireable<boolean>;
934
+ className: import("prop-types").Requireable<string>;
935
+ customStyle: import("prop-types").Requireable<{
937
936
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
938
937
  }>;
939
- }> | PropTypes.InferProps<{
940
- button: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
941
- type: PropTypes.Requireable<string>;
942
- usage: PropTypes.Requireable<string>;
943
- label: PropTypes.Requireable<string>;
944
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
945
- 'aria-label': PropTypes.Requireable<string>;
946
- tooltipText: PropTypes.Requireable<string>;
947
- tooltipPlacement: PropTypes.Requireable<string>;
948
- 'data-name': PropTypes.Requireable<string>;
949
- 'data-testid': PropTypes.Requireable<string>;
950
- icon: PropTypes.Requireable<PropTypes.InferProps<{
951
- position: PropTypes.Requireable<string>;
952
- type: PropTypes.Requireable<string>;
953
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
954
- name: PropTypes.Validator<string>;
955
- color: PropTypes.Requireable<string>;
956
- backgroundColor: PropTypes.Requireable<string>;
957
- size: PropTypes.Requireable<number>;
958
- customStyle: PropTypes.Requireable<{
938
+ }> | import("prop-types").InferProps<{
939
+ button: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
940
+ type: import("prop-types").Requireable<string>;
941
+ usage: import("prop-types").Requireable<string>;
942
+ label: import("prop-types").Requireable<string>;
943
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
944
+ 'aria-label': import("prop-types").Requireable<string>;
945
+ tooltipText: import("prop-types").Requireable<string>;
946
+ tooltipPlacement: import("prop-types").Requireable<string>;
947
+ 'data-name': import("prop-types").Requireable<string>;
948
+ 'data-testid': import("prop-types").Requireable<string>;
949
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
950
+ position: import("prop-types").Requireable<string>;
951
+ type: import("prop-types").Requireable<string>;
952
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
953
+ name: import("prop-types").Validator<string>;
954
+ color: import("prop-types").Requireable<string>;
955
+ backgroundColor: import("prop-types").Requireable<string>;
956
+ size: import("prop-types").Requireable<number>;
957
+ customStyle: import("prop-types").Requireable<{
959
958
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
960
959
  }>;
961
960
  }>>;
962
961
  }>>;
963
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
964
- link: PropTypes.Requireable<PropTypes.InferProps<{
965
- href: PropTypes.Requireable<string>;
966
- download: PropTypes.Requireable<boolean>;
967
- target: PropTypes.Requireable<string>;
962
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
963
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
964
+ href: import("prop-types").Requireable<string>;
965
+ download: import("prop-types").Requireable<boolean>;
966
+ target: import("prop-types").Requireable<string>;
968
967
  }>>;
969
- hoverBackgroundColor: PropTypes.Requireable<string>;
970
- hoverColor: PropTypes.Requireable<string>;
971
- disabled: PropTypes.Requireable<boolean>;
972
- className: PropTypes.Requireable<string>;
973
- customStyle: PropTypes.Requireable<{
968
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
969
+ hoverColor: import("prop-types").Requireable<string>;
970
+ disabled: import("prop-types").Requireable<boolean>;
971
+ className: import("prop-types").Requireable<string>;
972
+ customStyle: import("prop-types").Requireable<{
974
973
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
975
974
  }>;
976
975
  }>>>;
977
- menu: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
978
- buttons: PropTypes.Validator<(PropTypes.InferProps<{
979
- 'data-name': PropTypes.Requireable<string>;
980
- disabled: PropTypes.Requireable<boolean>;
981
- label: PropTypes.Validator<string>;
982
- onClick: PropTypes.Validator<(...args: any[]) => any>;
983
- type: PropTypes.Requireable<string>;
984
- buttonLinkType: PropTypes.Requireable<string>;
985
- icon: PropTypes.Requireable<PropTypes.InferProps<{
986
- theme: PropTypes.Requireable<string>;
987
- position: PropTypes.Requireable<string>;
988
- type: PropTypes.Requireable<string>;
989
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
990
- name: PropTypes.Validator<string>;
991
- color: PropTypes.Requireable<string>;
992
- backgroundColor: PropTypes.Requireable<string>;
993
- size: PropTypes.Requireable<number>;
994
- customStyle: PropTypes.Requireable<{
976
+ menu: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
977
+ buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
978
+ 'data-name': import("prop-types").Requireable<string>;
979
+ disabled: import("prop-types").Requireable<boolean>;
980
+ label: import("prop-types").Validator<string>;
981
+ onClick: import("prop-types").Validator<(...args: any[]) => any>;
982
+ type: import("prop-types").Requireable<string>;
983
+ buttonLinkType: import("prop-types").Requireable<string>;
984
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
985
+ theme: import("prop-types").Requireable<string>;
986
+ position: import("prop-types").Requireable<string>;
987
+ type: import("prop-types").Requireable<string>;
988
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
989
+ name: import("prop-types").Validator<string>;
990
+ color: import("prop-types").Requireable<string>;
991
+ backgroundColor: import("prop-types").Requireable<string>;
992
+ size: import("prop-types").Requireable<number>;
993
+ customStyle: import("prop-types").Requireable<{
995
994
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
996
995
  }>;
997
996
  }>>;
998
997
  }>>;
999
- customStyle: PropTypes.Requireable<{
998
+ customStyle: import("prop-types").Requireable<{
1000
999
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1001
1000
  }>;
1002
1001
  }> | null | undefined)[]>;
1003
- 'data-name': PropTypes.Requireable<string>;
1004
- 'aria-label': PropTypes.Requireable<string>;
1002
+ 'data-name': import("prop-types").Requireable<string>;
1003
+ 'aria-label': import("prop-types").Requireable<string>;
1005
1004
  }>>>;
1006
- menuWrapper: PropTypes.Requireable<PropTypes.InferProps<{
1007
- ariaLabel: PropTypes.Requireable<string>;
1008
- customStyle: PropTypes.Requireable<{
1005
+ menuWrapper: import("prop-types").Requireable<import("prop-types").InferProps<{
1006
+ ariaLabel: import("prop-types").Requireable<string>;
1007
+ customStyle: import("prop-types").Requireable<{
1009
1008
  [x: string]: NonNullable<string | number | object | null | undefined> | null | undefined;
1010
1009
  }>;
1011
1010
  }>>;
1012
1011
  }> | null | undefined>>;
1013
1012
  }>>;
1014
- }> | PropTypes.InferProps<{
1015
- type: PropTypes.Requireable<string>;
1016
- columns: PropTypes.Requireable<(PropTypes.InferProps<{
1017
- title: PropTypes.Validator<string>;
1013
+ }> | import("prop-types").InferProps<{
1014
+ type: import("prop-types").Requireable<string>;
1015
+ columns: import("prop-types").Requireable<(import("prop-types").InferProps<{
1016
+ title: import("prop-types").Validator<string>;
1018
1017
  }> | null | undefined)[]>;
1019
- rows: PropTypes.Requireable<(PropTypes.InferProps<{
1020
- fields: PropTypes.Requireable<(NonNullable<string | PropTypes.InferProps<{
1021
- type: PropTypes.Requireable<string>;
1022
- current: PropTypes.Requireable<boolean>;
1023
- selected: PropTypes.Requireable<boolean>;
1024
- icon: PropTypes.Requireable<string>;
1025
- value: PropTypes.Requireable<string>;
1018
+ rows: import("prop-types").Requireable<(import("prop-types").InferProps<{
1019
+ fields: import("prop-types").Requireable<(NonNullable<string | import("prop-types").InferProps<{
1020
+ type: import("prop-types").Requireable<string>;
1021
+ current: import("prop-types").Requireable<boolean>;
1022
+ selected: import("prop-types").Requireable<boolean>;
1023
+ icon: import("prop-types").Requireable<string>;
1024
+ value: import("prop-types").Requireable<string>;
1026
1025
  }> | null | undefined> | null | undefined)[]>;
1027
- isRowExpandible: PropTypes.Requireable<boolean>;
1028
- lastField: PropTypes.Requireable<NonNullable<string | PropTypes.InferProps<{
1029
- type: PropTypes.Requireable<string>;
1030
- 'data-name': PropTypes.Requireable<string>;
1031
- disabled: PropTypes.Requireable<boolean>;
1032
- buttonAriaLabel: PropTypes.Requireable<string>;
1033
- menuAriaLabel: PropTypes.Requireable<string>;
1034
- buttons: PropTypes.Validator<(PropTypes.InferProps<{
1035
- 'data-name': PropTypes.Requireable<string>;
1036
- disabled: PropTypes.Requireable<boolean>;
1037
- label: PropTypes.Validator<string>;
1038
- onClick: PropTypes.Validator<(...args: any[]) => any>;
1039
- type: PropTypes.Requireable<string>;
1040
- buttonLinkType: PropTypes.Requireable<string>;
1041
- icon: PropTypes.Requireable<PropTypes.InferProps<{
1042
- theme: PropTypes.Requireable<string>;
1043
- position: PropTypes.Requireable<string>;
1044
- type: PropTypes.Requireable<string>;
1045
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
1046
- name: PropTypes.Validator<string>;
1047
- color: PropTypes.Requireable<string>;
1048
- backgroundColor: PropTypes.Requireable<string>;
1049
- size: PropTypes.Requireable<number>;
1050
- customStyle: PropTypes.Requireable<{
1026
+ isRowExpandible: import("prop-types").Requireable<boolean>;
1027
+ lastField: import("prop-types").Requireable<NonNullable<string | import("prop-types").InferProps<{
1028
+ type: import("prop-types").Requireable<string>;
1029
+ 'data-name': import("prop-types").Requireable<string>;
1030
+ disabled: import("prop-types").Requireable<boolean>;
1031
+ buttonAriaLabel: import("prop-types").Requireable<string>;
1032
+ menuAriaLabel: import("prop-types").Requireable<string>;
1033
+ buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
1034
+ 'data-name': import("prop-types").Requireable<string>;
1035
+ disabled: import("prop-types").Requireable<boolean>;
1036
+ label: import("prop-types").Validator<string>;
1037
+ onClick: import("prop-types").Validator<(...args: any[]) => any>;
1038
+ type: import("prop-types").Requireable<string>;
1039
+ buttonLinkType: import("prop-types").Requireable<string>;
1040
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
1041
+ theme: import("prop-types").Requireable<string>;
1042
+ position: import("prop-types").Requireable<string>;
1043
+ type: import("prop-types").Requireable<string>;
1044
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
1045
+ name: import("prop-types").Validator<string>;
1046
+ color: import("prop-types").Requireable<string>;
1047
+ backgroundColor: import("prop-types").Requireable<string>;
1048
+ size: import("prop-types").Requireable<number>;
1049
+ customStyle: import("prop-types").Requireable<{
1051
1050
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1052
1051
  }>;
1053
1052
  }>>;
1054
1053
  }>>;
1055
- customStyle: PropTypes.Requireable<{
1054
+ customStyle: import("prop-types").Requireable<{
1056
1055
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1057
1056
  }>;
1058
1057
  }> | null | undefined)[]>;
1059
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
1060
- menuButtonClassName: PropTypes.Requireable<string>;
1061
- isBulkMenu: PropTypes.Requireable<boolean>;
1058
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
1059
+ menuButtonClassName: import("prop-types").Requireable<string>;
1060
+ isBulkMenu: import("prop-types").Requireable<boolean>;
1062
1061
  }> | null | undefined>>;
1063
1062
  }> | null | undefined)[]>;
1064
- stickyFirstColumn: PropTypes.Requireable<boolean>;
1065
- stickyLastColumn: PropTypes.Requireable<boolean>;
1066
- columnWidth: PropTypes.Requireable<string>;
1067
- ariaDescribedby: PropTypes.Requireable<string>;
1068
- lastField: PropTypes.Requireable<NonNullable<PropTypes.InferProps<{
1069
- componentType: PropTypes.Requireable<string>;
1070
- type: PropTypes.Requireable<string>;
1071
- usage: PropTypes.Requireable<string>;
1072
- label: PropTypes.Requireable<string>;
1073
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
1074
- 'aria-label': PropTypes.Requireable<string>;
1075
- tooltipText: PropTypes.Requireable<string>;
1076
- tooltipPlacement: PropTypes.Requireable<string>;
1077
- 'data-name': PropTypes.Requireable<string>;
1078
- 'data-testid': PropTypes.Requireable<string>;
1079
- icon: PropTypes.Requireable<PropTypes.InferProps<{
1080
- position: PropTypes.Requireable<string>;
1081
- type: PropTypes.Requireable<string>;
1082
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
1083
- name: PropTypes.Validator<string>;
1084
- color: PropTypes.Requireable<string>;
1085
- backgroundColor: PropTypes.Requireable<string>;
1086
- size: PropTypes.Requireable<number>;
1087
- customStyle: PropTypes.Requireable<{
1063
+ stickyFirstColumn: import("prop-types").Requireable<boolean>;
1064
+ stickyLastColumn: import("prop-types").Requireable<boolean>;
1065
+ columnWidth: import("prop-types").Requireable<string>;
1066
+ ariaDescribedby: import("prop-types").Requireable<string>;
1067
+ lastField: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
1068
+ componentType: import("prop-types").Requireable<string>;
1069
+ type: import("prop-types").Requireable<string>;
1070
+ usage: import("prop-types").Requireable<string>;
1071
+ label: import("prop-types").Requireable<string>;
1072
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
1073
+ 'aria-label': import("prop-types").Requireable<string>;
1074
+ tooltipText: import("prop-types").Requireable<string>;
1075
+ tooltipPlacement: import("prop-types").Requireable<string>;
1076
+ 'data-name': import("prop-types").Requireable<string>;
1077
+ 'data-testid': import("prop-types").Requireable<string>;
1078
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
1079
+ position: import("prop-types").Requireable<string>;
1080
+ type: import("prop-types").Requireable<string>;
1081
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
1082
+ name: import("prop-types").Validator<string>;
1083
+ color: import("prop-types").Requireable<string>;
1084
+ backgroundColor: import("prop-types").Requireable<string>;
1085
+ size: import("prop-types").Requireable<number>;
1086
+ customStyle: import("prop-types").Requireable<{
1088
1087
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1089
1088
  }>;
1090
1089
  }>>;
1091
1090
  }>>;
1092
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
1093
- link: PropTypes.Requireable<PropTypes.InferProps<{
1094
- href: PropTypes.Requireable<string>;
1095
- download: PropTypes.Requireable<boolean>;
1096
- target: PropTypes.Requireable<string>;
1091
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
1092
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
1093
+ href: import("prop-types").Requireable<string>;
1094
+ download: import("prop-types").Requireable<boolean>;
1095
+ target: import("prop-types").Requireable<string>;
1097
1096
  }>>;
1098
- hoverBackgroundColor: PropTypes.Requireable<string>;
1099
- hoverColor: PropTypes.Requireable<string>;
1100
- disabled: PropTypes.Requireable<boolean>;
1101
- className: PropTypes.Requireable<string>;
1102
- customStyle: PropTypes.Requireable<{
1097
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
1098
+ hoverColor: import("prop-types").Requireable<string>;
1099
+ disabled: import("prop-types").Requireable<boolean>;
1100
+ className: import("prop-types").Requireable<string>;
1101
+ customStyle: import("prop-types").Requireable<{
1103
1102
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1104
1103
  }>;
1105
- }> | PropTypes.InferProps<{
1106
- componentType: PropTypes.Requireable<string>;
1107
- 'data-name': PropTypes.Requireable<string>;
1108
- disabled: PropTypes.Requireable<boolean>;
1109
- buttonAriaLabel: PropTypes.Requireable<string>;
1110
- menuAriaLabel: PropTypes.Requireable<string>;
1111
- buttons: PropTypes.Validator<(PropTypes.InferProps<{
1112
- 'data-name': PropTypes.Requireable<string>;
1113
- disabled: PropTypes.Requireable<boolean>;
1114
- label: PropTypes.Validator<string>;
1115
- onClick: PropTypes.Validator<(...args: any[]) => any>;
1116
- type: PropTypes.Requireable<string>;
1117
- buttonLinkType: PropTypes.Requireable<string>;
1118
- icon: PropTypes.Requireable<PropTypes.InferProps<{
1119
- theme: PropTypes.Requireable<string>;
1120
- position: PropTypes.Requireable<string>;
1121
- type: PropTypes.Requireable<string>;
1122
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
1123
- name: PropTypes.Validator<string>;
1124
- color: PropTypes.Requireable<string>;
1125
- backgroundColor: PropTypes.Requireable<string>;
1126
- size: PropTypes.Requireable<number>;
1127
- customStyle: PropTypes.Requireable<{
1104
+ }> | import("prop-types").InferProps<{
1105
+ componentType: import("prop-types").Requireable<string>;
1106
+ 'data-name': import("prop-types").Requireable<string>;
1107
+ disabled: import("prop-types").Requireable<boolean>;
1108
+ buttonAriaLabel: import("prop-types").Requireable<string>;
1109
+ menuAriaLabel: import("prop-types").Requireable<string>;
1110
+ buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
1111
+ 'data-name': import("prop-types").Requireable<string>;
1112
+ disabled: import("prop-types").Requireable<boolean>;
1113
+ label: import("prop-types").Validator<string>;
1114
+ onClick: import("prop-types").Validator<(...args: any[]) => any>;
1115
+ type: import("prop-types").Requireable<string>;
1116
+ buttonLinkType: import("prop-types").Requireable<string>;
1117
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
1118
+ theme: import("prop-types").Requireable<string>;
1119
+ position: import("prop-types").Requireable<string>;
1120
+ type: import("prop-types").Requireable<string>;
1121
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
1122
+ name: import("prop-types").Validator<string>;
1123
+ color: import("prop-types").Requireable<string>;
1124
+ backgroundColor: import("prop-types").Requireable<string>;
1125
+ size: import("prop-types").Requireable<number>;
1126
+ customStyle: import("prop-types").Requireable<{
1128
1127
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1129
1128
  }>;
1130
1129
  }>>;
1131
1130
  }>>;
1132
- customStyle: PropTypes.Requireable<{
1131
+ customStyle: import("prop-types").Requireable<{
1133
1132
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1134
1133
  }>;
1135
1134
  }> | null | undefined)[]>;
1136
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
1137
- menuButtonClassName: PropTypes.Requireable<string>;
1138
- isBulkMenu: PropTypes.Requireable<boolean>;
1135
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
1136
+ menuButtonClassName: import("prop-types").Requireable<string>;
1137
+ isBulkMenu: import("prop-types").Requireable<boolean>;
1139
1138
  }> | null | undefined>>;
1140
- isNestedTable: PropTypes.Requireable<boolean>;
1141
- emptyStateFirstMessage: PropTypes.Requireable<string>;
1142
- emptyStateSecondMessage: PropTypes.Requireable<string>;
1139
+ isNestedTable: import("prop-types").Requireable<boolean>;
1140
+ emptyStateFirstMessage: import("prop-types").Requireable<string>;
1141
+ emptyStateSecondMessage: import("prop-types").Requireable<string>;
1143
1142
  }> | null | undefined>>;
1144
- title: PropTypes.Requireable<NonNullable<string | PropTypes.InferProps<{
1145
- title: PropTypes.Requireable<string>;
1146
- subtitle: PropTypes.Requireable<string>;
1147
- type: PropTypes.Requireable<string>;
1148
- 'data-name': PropTypes.Requireable<string>;
1149
- titleSize: PropTypes.Requireable<string>;
1150
- subtitleSize: PropTypes.Requireable<string>;
1151
- icon: PropTypes.Requireable<PropTypes.InferProps<any>>;
1152
- tag: PropTypes.Requireable<PropTypes.InferProps<{
1153
- label: PropTypes.Requireable<string>;
1154
- type: PropTypes.Requireable<string>;
1155
- size: PropTypes.Requireable<string>;
1156
- customStyle: PropTypes.Requireable<{
1143
+ title: import("prop-types").Requireable<NonNullable<string | import("prop-types").InferProps<{
1144
+ title: import("prop-types").Requireable<string>;
1145
+ subtitle: import("prop-types").Requireable<string>;
1146
+ type: import("prop-types").Requireable<string>;
1147
+ 'data-name': import("prop-types").Requireable<string>;
1148
+ titleSize: import("prop-types").Requireable<string>;
1149
+ subtitleSize: import("prop-types").Requireable<string>;
1150
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
1151
+ tag: import("prop-types").Requireable<import("prop-types").InferProps<{
1152
+ label: import("prop-types").Requireable<string>;
1153
+ type: import("prop-types").Requireable<string>;
1154
+ size: import("prop-types").Requireable<string>;
1155
+ customStyle: import("prop-types").Requireable<{
1157
1156
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1158
1157
  }>;
1159
- icon: PropTypes.Requireable<PropTypes.InferProps<any>>;
1158
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
1160
1159
  }>>;
1161
- button: PropTypes.Requireable<PropTypes.InferProps<{
1162
- type: PropTypes.Requireable<string>;
1163
- usage: PropTypes.Requireable<string>;
1164
- label: PropTypes.Requireable<string>;
1165
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
1166
- 'aria-label': PropTypes.Requireable<string>;
1167
- tooltipText: PropTypes.Requireable<string>;
1168
- tooltipPlacement: PropTypes.Requireable<string>;
1169
- 'data-name': PropTypes.Requireable<string>;
1170
- 'data-testid': PropTypes.Requireable<string>;
1171
- icon: PropTypes.Requireable<PropTypes.InferProps<{
1172
- position: PropTypes.Requireable<string>;
1173
- type: PropTypes.Requireable<string>;
1174
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
1175
- name: PropTypes.Validator<string>;
1176
- color: PropTypes.Requireable<string>;
1177
- backgroundColor: PropTypes.Requireable<string>;
1178
- size: PropTypes.Requireable<number>;
1179
- customStyle: PropTypes.Requireable<{
1160
+ button: import("prop-types").Requireable<import("prop-types").InferProps<{
1161
+ type: import("prop-types").Requireable<string>;
1162
+ usage: import("prop-types").Requireable<string>;
1163
+ label: import("prop-types").Requireable<string>;
1164
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
1165
+ 'aria-label': import("prop-types").Requireable<string>;
1166
+ tooltipText: import("prop-types").Requireable<string>;
1167
+ tooltipPlacement: import("prop-types").Requireable<string>;
1168
+ 'data-name': import("prop-types").Requireable<string>;
1169
+ 'data-testid': import("prop-types").Requireable<string>;
1170
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
1171
+ position: import("prop-types").Requireable<string>;
1172
+ type: import("prop-types").Requireable<string>;
1173
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
1174
+ name: import("prop-types").Validator<string>;
1175
+ color: import("prop-types").Requireable<string>;
1176
+ backgroundColor: import("prop-types").Requireable<string>;
1177
+ size: import("prop-types").Requireable<number>;
1178
+ customStyle: import("prop-types").Requireable<{
1180
1179
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1181
1180
  }>;
1182
1181
  }>>;
1183
1182
  }>>;
1184
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
1185
- link: PropTypes.Requireable<PropTypes.InferProps<{
1186
- href: PropTypes.Requireable<string>;
1187
- download: PropTypes.Requireable<boolean>;
1188
- target: PropTypes.Requireable<string>;
1183
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
1184
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
1185
+ href: import("prop-types").Requireable<string>;
1186
+ download: import("prop-types").Requireable<boolean>;
1187
+ target: import("prop-types").Requireable<string>;
1189
1188
  }>>;
1190
- hoverBackgroundColor: PropTypes.Requireable<string>;
1191
- hoverColor: PropTypes.Requireable<string>;
1192
- disabled: PropTypes.Requireable<boolean>;
1193
- className: PropTypes.Requireable<string>;
1194
- customStyle: PropTypes.Requireable<{
1189
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
1190
+ hoverColor: import("prop-types").Requireable<string>;
1191
+ disabled: import("prop-types").Requireable<boolean>;
1192
+ className: import("prop-types").Requireable<string>;
1193
+ customStyle: import("prop-types").Requireable<{
1195
1194
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1196
1195
  }>;
1197
1196
  }>>;
1198
- required: PropTypes.Requireable<boolean>;
1197
+ required: import("prop-types").Requireable<boolean>;
1199
1198
  }> | null | undefined>>;
1200
- isFetching: PropTypes.Requireable<boolean>;
1201
- search: PropTypes.Requireable<PropTypes.InferProps<{
1202
- value: PropTypes.Requireable<string>;
1203
- placeholder: PropTypes.Validator<string>;
1204
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
1205
- onClear: PropTypes.Requireable<(...args: any[]) => any>;
1206
- onFocus: PropTypes.Requireable<(...args: any[]) => any>;
1207
- onBlur: PropTypes.Requireable<(...args: any[]) => any>;
1208
- theme: PropTypes.Requireable<string>;
1209
- dataTestId: PropTypes.Requireable<string>;
1199
+ isFetching: import("prop-types").Requireable<boolean>;
1200
+ search: import("prop-types").Requireable<import("prop-types").InferProps<{
1201
+ value: import("prop-types").Requireable<string>;
1202
+ placeholder: import("prop-types").Validator<string>;
1203
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
1204
+ onClear: import("prop-types").Requireable<(...args: any[]) => any>;
1205
+ onFocus: import("prop-types").Requireable<(...args: any[]) => any>;
1206
+ onBlur: import("prop-types").Requireable<(...args: any[]) => any>;
1207
+ theme: import("prop-types").Requireable<string>;
1208
+ dataTestId: import("prop-types").Requireable<string>;
1210
1209
  }>>;
1211
- checkboxWithTitle: PropTypes.Requireable<PropTypes.InferProps<{
1212
- title: PropTypes.Requireable<string>;
1213
- name: PropTypes.Requireable<string>;
1214
- checked: PropTypes.Requireable<boolean>;
1215
- onChange: PropTypes.Requireable<(...args: any[]) => any>;
1216
- 'aria-label': PropTypes.Requireable<string>;
1217
- 'data-name': PropTypes.Requireable<string>;
1218
- icon: PropTypes.Requireable<PropTypes.InferProps<{
1219
- iconName: PropTypes.Requireable<string>;
1220
- iconColor: PropTypes.Requireable<string>;
1221
- preset: PropTypes.Requireable<string>;
1210
+ checkboxWithTitle: import("prop-types").Requireable<import("prop-types").InferProps<{
1211
+ title: import("prop-types").Requireable<string>;
1212
+ name: import("prop-types").Requireable<string>;
1213
+ checked: import("prop-types").Requireable<boolean>;
1214
+ onChange: import("prop-types").Requireable<(...args: any[]) => any>;
1215
+ 'aria-label': import("prop-types").Requireable<string>;
1216
+ 'data-name': import("prop-types").Requireable<string>;
1217
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
1218
+ iconName: import("prop-types").Requireable<string>;
1219
+ iconColor: import("prop-types").Requireable<string>;
1220
+ preset: import("prop-types").Requireable<string>;
1222
1221
  }>>;
1223
- customStyle: PropTypes.Requireable<{
1222
+ customStyle: import("prop-types").Requireable<{
1224
1223
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1225
1224
  }>;
1226
1225
  }>>;
1227
- actionButtons: PropTypes.Requireable<(PropTypes.InferProps<{
1228
- type: PropTypes.Requireable<string>;
1229
- usage: PropTypes.Requireable<string>;
1230
- label: PropTypes.Requireable<string>;
1231
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
1232
- 'aria-label': PropTypes.Requireable<string>;
1233
- tooltipText: PropTypes.Requireable<string>;
1234
- tooltipPlacement: PropTypes.Requireable<string>;
1235
- 'data-name': PropTypes.Requireable<string>;
1236
- 'data-testid': PropTypes.Requireable<string>;
1237
- icon: PropTypes.Requireable<PropTypes.InferProps<{
1238
- position: PropTypes.Requireable<string>;
1239
- type: PropTypes.Requireable<string>;
1240
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
1241
- name: PropTypes.Validator<string>;
1242
- color: PropTypes.Requireable<string>;
1243
- backgroundColor: PropTypes.Requireable<string>;
1244
- size: PropTypes.Requireable<number>;
1245
- customStyle: PropTypes.Requireable<{
1226
+ actionButtons: import("prop-types").Requireable<(import("prop-types").InferProps<{
1227
+ type: import("prop-types").Requireable<string>;
1228
+ usage: import("prop-types").Requireable<string>;
1229
+ label: import("prop-types").Requireable<string>;
1230
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
1231
+ 'aria-label': import("prop-types").Requireable<string>;
1232
+ tooltipText: import("prop-types").Requireable<string>;
1233
+ tooltipPlacement: import("prop-types").Requireable<string>;
1234
+ 'data-name': import("prop-types").Requireable<string>;
1235
+ 'data-testid': import("prop-types").Requireable<string>;
1236
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
1237
+ position: import("prop-types").Requireable<string>;
1238
+ type: import("prop-types").Requireable<string>;
1239
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
1240
+ name: import("prop-types").Validator<string>;
1241
+ color: import("prop-types").Requireable<string>;
1242
+ backgroundColor: import("prop-types").Requireable<string>;
1243
+ size: import("prop-types").Requireable<number>;
1244
+ customStyle: import("prop-types").Requireable<{
1246
1245
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1247
1246
  }>;
1248
1247
  }>>;
1249
1248
  }>>;
1250
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
1251
- link: PropTypes.Requireable<PropTypes.InferProps<{
1252
- href: PropTypes.Requireable<string>;
1253
- download: PropTypes.Requireable<boolean>;
1254
- target: PropTypes.Requireable<string>;
1249
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
1250
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
1251
+ href: import("prop-types").Requireable<string>;
1252
+ download: import("prop-types").Requireable<boolean>;
1253
+ target: import("prop-types").Requireable<string>;
1255
1254
  }>>;
1256
- hoverBackgroundColor: PropTypes.Requireable<string>;
1257
- hoverColor: PropTypes.Requireable<string>;
1258
- disabled: PropTypes.Requireable<boolean>;
1259
- className: PropTypes.Requireable<string>;
1260
- customStyle: PropTypes.Requireable<{
1255
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
1256
+ hoverColor: import("prop-types").Requireable<string>;
1257
+ disabled: import("prop-types").Requireable<boolean>;
1258
+ className: import("prop-types").Requireable<string>;
1259
+ customStyle: import("prop-types").Requireable<{
1261
1260
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1262
1261
  }>;
1263
1262
  }> | null | undefined)[]>;
1264
- buttonMenuAction: PropTypes.Requireable<PropTypes.InferProps<{
1265
- button: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
1266
- type: PropTypes.Requireable<string>;
1267
- usage: PropTypes.Requireable<string>;
1268
- label: PropTypes.Requireable<string>;
1269
- content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
1270
- 'aria-label': PropTypes.Requireable<string>;
1271
- tooltipText: PropTypes.Requireable<string>;
1272
- tooltipPlacement: PropTypes.Requireable<string>;
1273
- 'data-name': PropTypes.Requireable<string>;
1274
- 'data-testid': PropTypes.Requireable<string>;
1275
- icon: PropTypes.Requireable<PropTypes.InferProps<{
1276
- position: PropTypes.Requireable<string>;
1277
- type: PropTypes.Requireable<string>;
1278
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
1279
- name: PropTypes.Validator<string>;
1280
- color: PropTypes.Requireable<string>;
1281
- backgroundColor: PropTypes.Requireable<string>;
1282
- size: PropTypes.Requireable<number>;
1283
- customStyle: PropTypes.Requireable<{
1263
+ buttonMenuAction: import("prop-types").Requireable<import("prop-types").InferProps<{
1264
+ button: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
1265
+ type: import("prop-types").Requireable<string>;
1266
+ usage: import("prop-types").Requireable<string>;
1267
+ label: import("prop-types").Requireable<string>;
1268
+ content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
1269
+ 'aria-label': import("prop-types").Requireable<string>;
1270
+ tooltipText: import("prop-types").Requireable<string>;
1271
+ tooltipPlacement: import("prop-types").Requireable<string>;
1272
+ 'data-name': import("prop-types").Requireable<string>;
1273
+ 'data-testid': import("prop-types").Requireable<string>;
1274
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
1275
+ position: import("prop-types").Requireable<string>;
1276
+ type: import("prop-types").Requireable<string>;
1277
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
1278
+ name: import("prop-types").Validator<string>;
1279
+ color: import("prop-types").Requireable<string>;
1280
+ backgroundColor: import("prop-types").Requireable<string>;
1281
+ size: import("prop-types").Requireable<number>;
1282
+ customStyle: import("prop-types").Requireable<{
1284
1283
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1285
1284
  }>;
1286
1285
  }>>;
1287
1286
  }>>;
1288
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
1289
- link: PropTypes.Requireable<PropTypes.InferProps<{
1290
- href: PropTypes.Requireable<string>;
1291
- download: PropTypes.Requireable<boolean>;
1292
- target: PropTypes.Requireable<string>;
1287
+ onClick: import("prop-types").Requireable<(...args: any[]) => any>;
1288
+ link: import("prop-types").Requireable<import("prop-types").InferProps<{
1289
+ href: import("prop-types").Requireable<string>;
1290
+ download: import("prop-types").Requireable<boolean>;
1291
+ target: import("prop-types").Requireable<string>;
1293
1292
  }>>;
1294
- hoverBackgroundColor: PropTypes.Requireable<string>;
1295
- hoverColor: PropTypes.Requireable<string>;
1296
- disabled: PropTypes.Requireable<boolean>;
1297
- className: PropTypes.Requireable<string>;
1298
- customStyle: PropTypes.Requireable<{
1293
+ hoverBackgroundColor: import("prop-types").Requireable<string>;
1294
+ hoverColor: import("prop-types").Requireable<string>;
1295
+ disabled: import("prop-types").Requireable<boolean>;
1296
+ className: import("prop-types").Requireable<string>;
1297
+ customStyle: import("prop-types").Requireable<{
1299
1298
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1300
1299
  }>;
1301
1300
  }>>>;
1302
- menu: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
1303
- buttons: PropTypes.Validator<(PropTypes.InferProps<{
1304
- 'data-name': PropTypes.Requireable<string>;
1305
- disabled: PropTypes.Requireable<boolean>;
1306
- label: PropTypes.Validator<string>;
1307
- onClick: PropTypes.Validator<(...args: any[]) => any>;
1308
- type: PropTypes.Requireable<string>;
1309
- buttonLinkType: PropTypes.Requireable<string>;
1310
- icon: PropTypes.Requireable<PropTypes.InferProps<{
1311
- theme: PropTypes.Requireable<string>;
1312
- position: PropTypes.Requireable<string>;
1313
- type: PropTypes.Requireable<string>;
1314
- faIcon: PropTypes.Requireable<PropTypes.InferProps<{
1315
- name: PropTypes.Validator<string>;
1316
- color: PropTypes.Requireable<string>;
1317
- backgroundColor: PropTypes.Requireable<string>;
1318
- size: PropTypes.Requireable<number>;
1319
- customStyle: PropTypes.Requireable<{
1301
+ menu: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
1302
+ buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
1303
+ 'data-name': import("prop-types").Requireable<string>;
1304
+ disabled: import("prop-types").Requireable<boolean>;
1305
+ label: import("prop-types").Validator<string>;
1306
+ onClick: import("prop-types").Validator<(...args: any[]) => any>;
1307
+ type: import("prop-types").Requireable<string>;
1308
+ buttonLinkType: import("prop-types").Requireable<string>;
1309
+ icon: import("prop-types").Requireable<import("prop-types").InferProps<{
1310
+ theme: import("prop-types").Requireable<string>;
1311
+ position: import("prop-types").Requireable<string>;
1312
+ type: import("prop-types").Requireable<string>;
1313
+ faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
1314
+ name: import("prop-types").Validator<string>;
1315
+ color: import("prop-types").Requireable<string>;
1316
+ backgroundColor: import("prop-types").Requireable<string>;
1317
+ size: import("prop-types").Requireable<number>;
1318
+ customStyle: import("prop-types").Requireable<{
1320
1319
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1321
1320
  }>;
1322
1321
  }>>;
1323
1322
  }>>;
1324
- customStyle: PropTypes.Requireable<{
1323
+ customStyle: import("prop-types").Requireable<{
1325
1324
  [x: string]: NonNullable<string | number | null | undefined> | null | undefined;
1326
1325
  }>;
1327
1326
  }> | null | undefined)[]>;
1328
- 'data-name': PropTypes.Requireable<string>;
1329
- 'aria-label': PropTypes.Requireable<string>;
1327
+ 'data-name': import("prop-types").Requireable<string>;
1328
+ 'aria-label': import("prop-types").Requireable<string>;
1330
1329
  }>>>;
1331
- menuWrapper: PropTypes.Requireable<PropTypes.InferProps<{
1332
- ariaLabel: PropTypes.Requireable<string>;
1333
- customStyle: PropTypes.Requireable<{
1330
+ menuWrapper: import("prop-types").Requireable<import("prop-types").InferProps<{
1331
+ ariaLabel: import("prop-types").Requireable<string>;
1332
+ customStyle: import("prop-types").Requireable<{
1334
1333
  [x: string]: NonNullable<string | number | object | null | undefined> | null | undefined;
1335
1334
  }>;
1336
1335
  }>>;