export declare type APIKeyAuthentication = { location: APIKeyAuthentication.location; /** * the name of the query parameter or HTTP header for submitting the API Key */ name: string; /** * the api key value */ key: string; }; export declare namespace APIKeyAuthentication { enum location { HEADER = "header", QUERY = "query" } }