import type { AuthProvider } from "./types.js"; export interface BearerTokenAuthOptions { serviceName: string; envVar: string; whoamiPath?: string; commandPrefix?: string; } export declare function bearerTokenAuth(options: BearerTokenAuthOptions): AuthProvider;