export namespace FRAGMENTS {
    let APP_INSTALLATION: string;
    let APP_SUBSCRIPTION: string;
    let APP_PURCHASE: string;
    let APP_METAFIELD: string;
    let THEME: string;
}
export namespace TRANSFORM {
    export { THEME_QUERY_TRANSFORM as THEME_QUERY };
    export { APP_QUERY_TRANSFORM as APP_QUERY };
    export { APP_METAFIELDS_TRANSFORM as APP_METAFIELDS };
}
export namespace APP_QUERY {
    export { CANCEL_APP_SUBSCRIPTION };
    export { INSTALLATION_SUBSCRIPTIONS };
    export { INSTALLATION_BASIC };
    export { INSTALLATION };
    export { THEME_ACTIVE };
    export { THEME };
}
declare function THEME_QUERY_TRANSFORM(data: any): {
    id: any;
    name: any;
    updatedAt: any;
    isActive: boolean;
    assets: any;
} | undefined;
declare function APP_QUERY_TRANSFORM(data: any, body: any): {
    appMetafields: any;
    appInfo: any;
    appInstallation: any;
};
declare function APP_METAFIELDS_TRANSFORM(metafields: any): any;
declare const CANCEL_APP_SUBSCRIPTION: "\n  mutation cancelAppSubscription($id: ID!) {\n    appSubscriptionCancel(id: $id) {\n      appSubscription {\n        id\n        status\n      }\n    }\n  }\n";
declare const INSTALLATION_SUBSCRIPTIONS: string;
declare const INSTALLATION_BASIC: string;
declare const INSTALLATION: string;
declare const THEME_ACTIVE: string;
declare const THEME_1: string;
export {};
//# sourceMappingURL=graph.d.ts.map