import { SLSLogger, SLSOptions } from './types'; /** * Common methods of packaging aliyun SLS log service */ export declare class Logger implements SLSLogger { private readonly topic; private readonly options; private logger; constructor(topic: string, options: SLSOptions); /** * processing sls log */ private handle; log(value: string, source?: string): Promise; info(value: string, source?: string): Promise; error(value: string, source?: string): Promise; debug(value: string, source?: string): Promise; warn(value: string, source?: string): Promise; }