import { DeveloperPlatformClient } from '../utilities/developer-platform-client.js'; import { AppInterface } from '../models/app/app.js'; import { OutputMessage } from '@shopify/cli-kit/node/output'; export type Format = 'json' | 'text'; export interface InfoOptions { format: Format; configName?: string; /** When true the command outputs the env. variables necessary to deploy and run web/ */ webEnv: boolean; developerPlatformClient?: DeveloperPlatformClient; } export declare function info(app: AppInterface, options: InfoOptions): Promise; export declare function infoWeb(app: AppInterface, { format }: InfoOptions): Promise; export declare function infoApp(app: AppInterface, options: InfoOptions): Promise;