import * as $dara from '@darabonba/typescript'; export declare class DescribeApiSignaturesRequest extends $dara.Model { /** * @remarks * The IDs of the APIs that you want to query. Separate multiple API IDs with commas (,). A maximum of 100 API IDs can be entered. * * @example * 123 */ apiIds?: string; /** * @remarks * The ID of the API group. * * This parameter is required. * * @example * 0009db9c828549768a200320714b8930 */ groupId?: string; /** * @remarks * The number of the page to return. Pages start from page 1. Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries to return on each page. Maximum value: 100. Default value: 10. * * @example * 10 */ pageSize?: number; securityToken?: string; /** * @remarks * The runtime environment. Valid values: * * * **RELEASE** * * **TEST** * * This parameter is required. * * @example * TEST */ stageName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }