import { OptionsOrFactory } from "./OptionsOrFactory"; export interface AuthStrategyOptions { name: string; scheme: string; options?: ProviderOptions; } export declare type AuthStrategy = OptionsOrFactory;