import * as $dara from '@darabonba/typescript'; export declare class DescribeTemplatesRequest extends $dara.Model { /** * @remarks * The page number to return when paginating query results. * * Default value: 1. * * @example * 1 */ pageNum?: number; /** * @remarks * The number of entries per page when paginating query results. * * Default value: 10. * * @example * 10 */ pageSize?: number; /** * @remarks * The templatetype. * * - If the value is set to `kubernetes`, the template is displayed on the Orchestration Templates page in the console. * * - If this parameter is left empty or set to other values, the template is not displayed on the Orchestration Templates page in the console. * * Set this parameter to `kubernetes`. * * @example * kubernetes */ templateType?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }