import type { MultiSelectProps } from "./types"; /** * Note: React aria components does not provide us any mutliselect componennt or hooks for it. * We are just replicating the behaviour of mutli select component with all available hooks and components. * Few things are implemented manually like opening the popover on keydown or keyup when the button is focused * or focusing the trigger on click of label. * * This is a temporary solution until we have a mutli select component from react aria components library. */ export declare const MultiSelect: (props: MultiSelectProps) => JSX.Element;