import { PluginContext, SystemError, UserError } from "@microsoft/teamsfx-api"; export declare enum TelemetryEventName { scaffold = "scaffold", localDebug = "local-debug", postLocalDebug = "post-local-debug" } export declare class TelemetryUtils { static ctx: PluginContext; static localAppId: string | undefined; static init(ctx: PluginContext): void; static sendStartEvent(eventName: string, properties?: { [key: string]: string; }, measurements?: { [key: string]: number; }): void; static sendSuccessEvent(eventName: string, properties?: { [key: string]: string; }, measurements?: { [key: string]: number; }, errorProps?: string[]): void; static sendErrorEvent(eventName: string, err: UserError | SystemError, properties?: { [key: string]: string; }, measurements?: { [key: string]: number; }, errorProps?: string[]): void; } //# sourceMappingURL=telemetry.d.ts.map