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;
}
export declare function info(app: AppInterface, options: InfoOptions): Promise<OutputMessage>;
export declare function infoWeb(app: AppInterface, { format }: InfoOptions): Promise<OutputMessage>;
export declare function infoApp(app: AppInterface, options: InfoOptions): Promise<OutputMessage>;
