import { Logging } from '@google-cloud/logging'; import { KeyValue } from '../../../vision/types'; import { GoogleCloudLoggingConfig, Severity, SeverityColors } from '../types'; export declare class GCloud { protected config: KeyValue; protected logging: Logging; constructor(config: GoogleCloudLoggingConfig); render(name: string, type: Severity, _color: SeverityColors, _timestamp: string, message: string, meta: KeyValue): void; }