export interface DecodedToken {
    exp?: number;
    sub?: string;
    email?: string;
    app?: string;
    baseUrl?: string;
}
export declare enum FileType {
    Apk = "apk",
    Ipa = "ipa"
}
export declare enum AppPlatform {
    Android = "android",
    IOS = "ios"
}
export declare enum FileContentType {
    Ipa = "application/octet-stream",
    Apk = "application/vnd.android.package-archive"
}
