import { JsonMapType } from '@shopify/cli-kit/node/toml'; export declare const ActiveAppReleaseQuery: string; export interface ActiveAppReleaseQueryVariables { appId: string; } export interface AppModuleSpecification { identifier: string; externalIdentifier: string; name: string; experience: 'EXTENSION' | 'CONFIGURATION' | 'DEPRECATED'; } export interface AppModule { gid: string; uid: string; handle: string; config: JsonMapType; specification: AppModuleSpecification; } export interface ActiveAppReleaseQuerySchema { app: { id: string; activeRelease: { id: string; version: { modules: AppModule[]; }; }; }; }