import { type HostEnvironmentId } from './types/index.js'; /** * Determine if the current prompting environment is cli . * * @returns true if it is a cli environment, false otherwise */ export declare function isCli(): boolean; /** * Determine if the current prompting environment is cli or a hosted extension (app studio or vscode). * * @returns the platform name and technical name */ export declare function getHostEnvironment(): { name: string; technical: HostEnvironmentId; }; //# sourceMappingURL=environment.d.ts.map