export declare const AppRelease: string;
interface ErrorDetail {
    extension_id: number;
    extension_title: string;
}
export interface AppReleaseVariables {
    apiKey: string;
    versionTag?: string;
    appVersionId?: number;
}
export interface AppReleaseSchema {
    appRelease: {
        appVersion: {
            versionTag: string;
            message: string;
            location: string;
        };
        userErrors: {
            field: string[];
            message: string;
            category: string;
            details: ErrorDetail[];
        }[];
    };
}
export {};
