import React from "react"; import "./MultiBox.scss"; declare type IProps = { labels: string[]; selectedValue: string[]; value: string[]; onChange: (value: string[]) => void; withAllToogler?: boolean; defaultAllToogle?: boolean; withAllTooglerLabel?: string; }; declare const JDmultiBox: React.FC; export default JDmultiBox;