import * as $dara from '@darabonba/typescript'; export declare class CreateWarehouseRequest extends $dara.Model { /** * @remarks * The use case of the certificate warehouse. * * @example * contract */ biz?: string; /** * @remarks * The name of the certificate warehouse. * * @example * MyCertificateWarehouse */ name?: string; /** * @remarks * The type of the certificate warehouse. Valid values: * * @example * pcaCertificate */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }