import * as $dara from '@darabonba/typescript'; export declare class ListWarehouseShrinkRequest extends $dara.Model { /** * @remarks * The maximum number of entries to return on each page. * * @example * 20 */ maxResults?: number; /** * @remarks * The pagination token from a previous response. Use this token to retrieve the next page of results. Omit this parameter for the first request. * * @example * 1d2db86sca4384811e0b5e8707e68181f */ nextToken?: string; /** * @remarks * A list of warehouse instance IDs. * * @example * cas-wh-uc-gl2bsq */ warehouseInstanceIdsShrink?: string; /** * @remarks * A list of warehouse types. * * @example * pcaCaCert */ warehouseTypesShrink?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }