import { FileSystem, Logger } from '@servicenow/sdk-project'; type DeploymentManifest = { register_scope?: boolean; }; export declare function parseManifestData(workingDir: string, fs: FileSystem, fileName?: string): DeploymentManifest; export declare function getRegisterScopeFlag(workingDir: string, fs: FileSystem): boolean; export declare function updateRegisterScopeFlag(workingDir: string, fs: FileSystem, logger: Logger, registerScope?: boolean): void; export declare function getSysAppURL(host: string, sysId: string, isStoreApp: boolean): string; export {};