#!/usr/bin/env node import { DebuggingMethod, RegisteredAddin, SourceBundleUrlComponents, WebViewType } from "./dev-settings"; import * as registry from "./registry"; export declare const OutlookSideloadManifestPath: string; export declare function clearDevSettings(addinId: string): Promise; export declare function deleteDeveloperSettingsRegistryKey(addinId: string): Promise; export declare function disableRuntimeLogging(): Promise; export declare function enableDebugging(addinId: string, enable?: boolean, method?: DebuggingMethod, openDevTools?: boolean): Promise; export declare function enableLiveReload(addinId: string, enable?: boolean): Promise; export declare function enableRuntimeLogging(path: string): Promise; export declare function getDeveloperSettingsRegistryKey(addinId: string): registry.RegistryKey; export declare function getEnabledDebuggingMethods(addinId: string): Promise; export declare function getOpenDevTools(addinId: string): Promise; export declare function getRegisteredAddIns(): Promise; export declare function getRuntimeLoggingPath(): Promise; export declare function getSourceBundleUrl(addinId: string): Promise; export declare function getWebView(addinId: string): Promise; export declare function isDebuggingEnabled(addinId: string): Promise; export declare function isLiveReloadEnabled(addinId: string): Promise; export declare function registerAddIn(manifestPath: string, registration?: string): Promise; export declare function setSourceBundleUrl(addinId: string, components: SourceBundleUrlComponents): Promise; export declare function setWebView(addinId: string, webViewType: WebViewType | undefined): Promise; export declare function toWebViewTypeName(webViewType?: WebViewType): string | undefined; export declare function unregisterAddIn(addinId: string, manifestPath: string): Promise; export declare function unregisterAllAddIns(): Promise;