import type { ILogHandler, ServiceScope } from '@microsoft/sp-core-library'; /** * This handler adapts the sp-core-library Log to use the internal telemetry. * @internal */ export default class LogHandler implements ILogHandler { verbose(source: string, message: string, scope: ServiceScope): void; info(source: string, message: string, scope: ServiceScope): void; warn(source: string, message: string, scope: ServiceScope): void; error(source: string, error: Error, scope: ServiceScope): void; } //# sourceMappingURL=LogHandler.d.ts.map