import * as $dara from '@darabonba/typescript'; export declare class DescribePluginTemplatesRequest extends $dara.Model { /** * @remarks * The language that is used to return the description of the system policy. Valid values: * * * en: English * * zh-CN: Chinese. * * ja: Japanese * * @example * zh */ language?: string; /** * @remarks * The name of the plug-in. * * @example * jwtAuth */ pluginName?: string; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }