import * as $dara from '@darabonba/typescript'; export declare class DescribeApisByTrafficControlRequest extends $dara.Model { /** * @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 ID of the throttling policy that you want to query. * * This parameter is required. * * @example * dd05f1c54d6749eda95f9fa6d491449a */ trafficControlId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }