import React from "react"; import { MultiSelectorProps, OptionItem } from "./MultiSelector"; export declare const useMultiSelectorMethods: (props: MultiSelectorProps) => { filteredLeft: { text: string; value: string; }[]; filteredRight: { text: string; value: string; }[]; filterText: string; leftSelectReft: React.RefObject; rigthSelectReft: React.RefObject; textFilterChange: (event: React.ChangeEvent) => void; moveItemsToRight: () => void; moveItemsToLeft: () => void; moveAllItems: (action: "assign" | "remove") => void; reorderSelectedItems: (direction: "up" | "down") => void; onSelectionChange: (selectedValues: string[], side: "left" | "right", ref: React.RefObject) => void; updateItemsOnDoubleClick: (value: string, side: "left" | "right") => void; thereAreItemsInLeft: boolean; thereAreItemsInRight: boolean; totalSelected: number; searchFilterLabel: string | true; optionItems: OptionItem; setOptionItems: React.Dispatch>; };