import type { ServerConfig } from "../config/type.js"; export interface SupportedAuthMethods { role: ServerConfig["server"]["role"]; method: "local" | "password" | "magic_link" | "oidc" | "cloudflare_access" | null; devTokensEnabled: boolean; oidcProvider?: string; } /** Returns the one mechanism this deployment can issue, not merely configured mechanisms. */ export declare function supportedAuthMethods(config: ServerConfig): SupportedAuthMethods; //# sourceMappingURL=methods.d.ts.map