import type { BaseCredential } from './BaseCredential'; export declare type APIKeyCredential = (BaseCredential & { type?: APIKeyCredential.type; data?: { value: string; location: APIKeyCredential.location; parameterName: string; }; }); export declare namespace APIKeyCredential { enum type { API_KEY = "apiKey" } enum location { HEADER = "header", QUERY = "query" } }