import * as $dara from '@darabonba/typescript'; export declare class CreateConsumerAPIKeyInput extends $dara.Model { /** * @remarks * A custom API key. If omitted, the service generates one automatically. * * @example * sk-xxxxxxxxxxxxxxxxxxxx */ apiKey?: string; /** * @remarks * A description for the consumer API key. * * @example * 用于生产环境的API密钥 */ description?: string; /** * @remarks * The identifier for the model connection. * * This parameter is required. * * @example * mc-1234567890abcdef */ modelConnectionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }