import React from "react"; import { Props, ItemId, FormatedSelections, SelectedItemType } from "./types"; export interface CascadingMenuRef { getSelection: () => FormatedSelections | null; getAllItemsSelected: () => string[][]; getSelectionsObjs: () => { selectedItems: SelectedItemType; activeItem: SelectedItemType; }; leafNodes: ItemId[][]; } declare const Index: React.ForwardRefExoticComponent>; export default Index; export type { Props };