import type { OpenAPISpec } from "../parser/types.js"; import type { AuthConfig } from "./types.js"; export interface AuthFlags { token?: string; apiKey?: string; authHeader?: string; profile?: string; } export declare function resolveAuth(flags: AuthFlags, spec: OpenAPISpec, env?: NodeJS.ProcessEnv): Promise; //# sourceMappingURL=flags.d.ts.map