import React from "react"; export declare type Item = { text: string; value: string; }; export interface SelectMultipleProps { items: Item[]; onSelectionChange: (selectedValues: string[]) => void; onDoubleClick: (value: string) => void; refSelect?: React.Ref; value?: string[]; height?: number; } export declare const SelectMultiple: React.FC;