import React from "react"; import { NavigationBarProps } from ".."; type FixedNavigationBarContextProps = { submenuMaxHeight?: string; }; declare const FixedNavigationBarContext: React.Context; export interface FixedNavigationBarContextProviderProps extends Pick { navbarRef: React.RefObject; } export declare const FixedNavigationBarContextProvider: ({ position, orientation, offset, children, navbarRef, }: FixedNavigationBarContextProviderProps) => React.JSX.Element; export default FixedNavigationBarContext;