export declare class TelemetryStorage {
  private readonly conf;
  static init({
    distDir
  }: {
    distDir: string;
  }): Promise<TelemetryStorage>;
  private constructor();
  private notify;
  get configPath(): string | undefined;
  get anonymousId(): string;
}