import * as commander from "commander"; import * as devSettings from "./dev-settings"; import { AccountOperation } from "./publish"; export declare function appcontainer(manifestPath: string, command: commander.Command): Promise; export declare function clear(manifestPath: string): Promise; export declare function debugging(manifestPath: string, command: commander.Command): Promise; export declare function disableDebugging(manifestPath: string): Promise; export declare function disableLiveReload(manifestPath: string): Promise; export declare function disableRuntimeLogging(): Promise; export declare function enableDebugging(manifestPath: string, command: commander.Command): Promise; export declare function enableLiveReload(manifestPath: string): Promise; export declare function enableRuntimeLogging(path?: string): Promise; export declare function getSourceBundleUrl(manifestPath: string): Promise; export declare function isDebuggingEnabled(manifestPath: string): Promise; export declare function isLiveReloadEnabled(manifestPath: string): Promise; export declare function isRuntimeLoggingEnabled(): Promise; export declare function liveReload(manifestPath: string, command: commander.Command): Promise; export declare function parseWebViewType(webViewString?: string): devSettings.WebViewType | undefined; export declare function m365Account(operation: AccountOperation, command: commander.Command): Promise; export declare function register(manifestPath: string, command: commander.Command): Promise; export declare function registered(command: commander.Command): Promise; export declare function runtimeLogging(command: commander.Command): Promise; export declare function sideload(manifestPath: string, type: string | undefined, command: commander.Command): Promise; export declare function setSourceBundleUrl(manifestPath: string, command: commander.Command): Promise; export declare function sourceBundleUrl(manifestPath: string, command: commander.Command): Promise; export declare function unregister(manifestPath: string, command: commander.Command): Promise; export declare function webView(manifestPath: string, webViewString?: string): Promise;