import type { default as Provider, interactionPolicy } from "oidc-provider"; export type OIDCContext = InstanceType; export type OidcClient = InstanceType; export type DefaultPolicy = interactionPolicy.DefaultPolicy; export type AuthorizationCode = InstanceType; export type AccessToken = InstanceType; export type ClientCredentials = InstanceType; export type DeviceCode = InstanceType; export type RefreshToken = InstanceType; export type BackchannelAuthenticationRequest = InstanceType; export type Grant = InstanceType; export type OidcInteraction = InstanceType;