export type UpstreamAuth = { kind: "bearer"; token: string; } | { kind: "header"; name: string; value: string; }; export type UpstreamTarget = { baseUrl: string; auth: UpstreamAuth; }; export declare const resolveUpstream: (key: string) => UpstreamTarget | null; export declare const listUpstreamKeys: () => string[]; //# sourceMappingURL=upstreams.d.ts.map