export declare class Stash {
    static setDataStash(dataKey: string, dataValue: any, appId: any, appKey: any): Promise<any>;
    static getDataStash(dataKey: string, appId: any, appKey: any): Promise<any>;
    static clearDataStash(appId: any, appKey: any): Promise<any>;
}
