export declare const SCHEMA: { readonly TS: "ts"; readonly JS: "js"; }; export interface StoryblokApiMapping { eu: { managementApi: "https://mapi.storyblok.com/v1"; deliveryApi: "https://api.storyblok.com/v2"; graphql: "https://gapi.storyblok.com/v1/api"; }; us: { managementApi: "https://api-us.storyblok.com/v1"; deliveryApi: "https://api-us.storyblok.com/v2"; graphql: "https://gapi-us.storyblok.com/v1/api"; }; cn: { managementApi: "https://app.storyblokchina.cn"; deliveryApi: "https://app.storyblokchina.cn"; graphql: ""; }; ap: { managementApi: "https://api-ap.storyblok.com/v1"; deliveryApi: "https://api-ap.storyblok.com/v2"; graphql: "https://gapi-ap.storyblok.com/v1/api"; }; } export declare const storyblokApiMapping: StoryblokApiMapping;