import React from "react"; import { AuthConfig } from "./AuthContext"; export { AuthConfig, AuthContext, type AzureConfig } from "./AuthContext"; type AuthProviderProps = { children: any; authConfig: AuthConfig; }; export declare const AuthProvider: ({ children, authConfig }: AuthProviderProps) => React.JSX.Element;