@@ -212,34 +212,34 @@ declare module "react-select/base" {
212212
213213declare module "react-select" {
214214 export interface MultiValueProps <
215- Option ,
216- IsMulti extends boolean ,
217- Group extends GroupBase < Option > ,
215+ Option = unknown ,
216+ IsMulti extends boolean = boolean ,
217+ Group extends GroupBase < Option > = GroupBase < Option > ,
218218 > {
219219 sx : SystemStyleObject ;
220220 }
221221
222222 export interface MultiValueGenericProps <
223- Option ,
224- IsMulti extends boolean ,
225- Group extends GroupBase < Option > ,
223+ Option = unknown ,
224+ IsMulti extends boolean = boolean ,
225+ Group extends GroupBase < Option > = GroupBase < Option > ,
226226 > {
227227 sx : SystemStyleObject ;
228228 }
229229
230230 export interface MultiValueRemoveProps <
231- Option ,
232- IsMulti extends boolean ,
233- Group extends GroupBase < Option > ,
231+ Option = unknown ,
232+ IsMulti extends boolean = boolean ,
233+ Group extends GroupBase < Option > = GroupBase < Option > ,
234234 > {
235235 isFocused : boolean ;
236236 sx : SystemStyleObject ;
237237 }
238238
239239 export interface LoadingIndicatorProps <
240- Option ,
241- IsMulti extends boolean ,
242- Group extends GroupBase < Option > ,
240+ Option = unknown ,
241+ IsMulti extends boolean = boolean ,
242+ Group extends GroupBase < Option > = GroupBase < Option > ,
243243 > {
244244 /**
245245 * The color of the filled in area of the spinner.
0 commit comments