export declare type Method = string; export declare type Paramater = string; export declare type Location = string; export declare type ApiKey = { /** * security operation name */ operation: Method; /** * apiKey parameter name */ name: Paramater; /** * apiKey parameter location */ in?: Location; [k: string]: any; }[]; /** * Swagger Security Definitions for dot render struct */ export interface SecurityDefinitions { /** * apiKey type of Security Scheme Objects */ apiKey?: ApiKey; [k: string]: any; }