randmarcomps 1.182.0 → 1.185.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -332,6 +332,15 @@ declare interface ManufacturerReorderingCardProps {
332
332
 
333
333
  declare type MaskType = "phone" | "postal-code-ca" | "zip-code-us";
334
334
 
335
+ export declare function MultiSelect({ options, selected, onChange, placeholder }: MultiSelectProps): JSX.Element;
336
+
337
+ declare interface MultiSelectProps {
338
+ options: string[];
339
+ selected: string[];
340
+ onChange: (selected: string[]) => void;
341
+ placeholder?: string;
342
+ }
343
+
335
344
  export declare const Navbar: default_2.ForwardRefExoticComponent<NavbarProps & default_2.RefAttributes<ChatLayoutHandle | null>>;
336
345
 
337
346
  export declare interface NavbarProps {