import { FC, PropsWithChildren } from "react"; export declare type IMenuElementProviderProps = PropsWithChildren<{ defaultElement?: Element; }>; export declare const MenuElementProvider: FC; export declare type IMenuSelectionProviderProps = PropsWithChildren<{ defaultSelection?: string[]; }>; export declare const MenuSelectionProvider: FC;