import React, { ReactNode } from 'react'; import { VariableOption } from '@perses-dev/plugin-system'; export interface ListVariableListBoxContextValue { options: VariableOption[]; selectedOptions: VariableOption[]; filteredOptions: VariableOption[]; allowAllValue: boolean; onChange: (selectedOptions: VariableOption[]) => void; } export declare function useListVariableListBoxContext(): ListVariableListBoxContextValue; export declare function ListVariableListBoxProvider({ value, children, }: { value: ListVariableListBoxContextValue; children: ReactNode; }): React.ReactElement; export declare const ListVariableListBox: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=ListVariableListBox.d.ts.map