import { createContext } from "@lit-labs/context"; import type { Config, CurrentBrand } from "@goauthentik/api"; export const authentikConfigContext = createContext(Symbol("authentik-config-context")); export const authentikBrandContext = createContext(Symbol("authentik-brand-context")); export default authentikConfigContext;