import React from 'react'; export interface Option { label: string; value: any; } interface MultiSelectCheckboxProps { options: Option[]; initialValues: any[]; onSelectionChange: (selectedValues: any[]) => void; } declare const MultiSelect: React.FC; export default MultiSelect;