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;
