import React from 'react'; import { ActiveNavElement, CurrentOrganizationInterface, CurrentProjectInterface, Product } from './types'; export interface MongoNavContextProps { isLoading: boolean; activeNav?: ActiveNavElement; useAppServicesBranding?: boolean; activeProduct?: Product; currentOrg?: CurrentOrganizationInterface | null; currentProject?: CurrentProjectInterface; } export declare const defaultMongoNavContext: { readonly isLoading: false; readonly useAppServicesBranding: true; }; export declare const MongoNavProvider: ({ children, context, }: { children: React.ReactNode; context: MongoNavContextProps; }) => JSX.Element; export declare const useMongoNavContext: () => MongoNavContextProps; //# sourceMappingURL=MongoNavContext.d.ts.map