import { Theme } from '@shopify/cli-kit/node/themes/types'; import { AdminSession } from '@shopify/cli-kit/node/session'; import { OutputMessage } from '@shopify/cli-kit/node/output'; export interface ThemeInfo { theme: { id: number; name: string; role: string; shop: string; editor_url: string; preview_url: string; }; } export interface ThemeInfoOptions { store?: string; password?: string; environment?: string; development?: boolean; theme?: string; json?: boolean; } export declare function themeInfoJSON(theme: Theme, adminSession: AdminSession): ThemeInfo; export declare function fetchThemeInfo(adminSession: AdminSession, options: ThemeInfoOptions): Promise; export declare function fetchDevInfo(config: { cliVersion: string; }): Promise;