UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 380 B
import React from 'react'; import { Props } from "./"; import { NavConfig } from "./hooks/useNavConfig"; export type ContextValue = { configs: NavConfig; } & Props; export declare const NavigationContext: React.Context<ContextValue>; export declare const NavigationProvider: ({ children, ...props }: { children: React.ReactNode; } & Props) => React.JSX.Element;