import * as $dara from '@darabonba/typescript'; export declare class ModelConnectionConsumerAPIKey extends $dara.Model { /** * @remarks * The unique identifier for the consumer API key. * * @example * 12345678-1234-1234-1234-123456789abc */ apiKeyId?: string; /** * @remarks * The value of the consumer API key. */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }