export interface ServeApiKeyOptions { readonly apiKey?: string | undefined; readonly apiKeyFile?: string | undefined; } export interface ResolvedServeApiKey { readonly apiKey: string | undefined; readonly warning: string | undefined; } export declare function resolveServeApiKey(options: ServeApiKeyOptions): ResolvedServeApiKey; //# sourceMappingURL=api-key.d.ts.map